blob: 6f9048d851ab74505124e52efe857a25347807eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
INCLUDES = \
-I$(top_srcdir)/kompare/libdialogpages \
-I$(top_srcdir)/kompare/komparepart \
-I$(top_srcdir)/kompare/interfaces $(all_includes)
noinst_HEADERS = \
levenshteintable.h \
kompare.h \
kompareprocess.h \
komparemodellist.h \
diffmodel.h \
difference.h \
diffhunk.h
# let automoc handle all of the meta source files (moc)
METASOURCES = AUTO
noinst_LTLIBRARIES = libdiff2.la
# the Part's source, library search path, and link libraries
libdiff2_la_SOURCES = \
kompareprocess.cpp \
komparemodellist.cpp \
diffmodellist.cpp \
diffmodel.cpp \
difference.cpp \
diffhunk.cpp \
levenshteintable.cpp \
parser.cpp \
parserbase.cpp \
cvsdiffparser.cpp \
diffparser.cpp \
perforceparser.cpp
libdiff2_la_LDFLAGS = $(all_libraries)
libdiff2_la_LIBADD = $(LIB_KFILE)
|