forked from blackfiveimaging/library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
93 lines (73 loc) · 2.7 KB
/
Makefile.am
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Makefile.am
SUBDIRS = argyllsupport support imagesource imageutils miscwidgets stpui_widgets stp_support gp_cppsupport pixbufthumbnail profilemanager
localedir=$(datadir)/locale
AM_CXXFLAGS = -DLOCALEDIR=\"$(localedir)\" -Wall -I./support/ -I./layoutsupport -I./imagesource/ -I./imageutils -I./splashscreen \
-I./miscwidgets -I./profilemanager -I./effects \
$(LCMS_CFLAGS) $(GP_CFLAGS) $(GTK2_CFLAGS)
check_PROGRAMS = dirtreetest jpegscan jpegcheck \
mkrgbprofile mklabprofile mkgreyprofile \
composite imgsrctest \
combotest tabui \
printqueuetest stpuitest debugtest errorqueuetest \
smartptrtest imgsinktest sendserial
bin_PROGRAMS = threadtest gprintertest mkthumbnail profileuitest pvtest configtest mmmenugfx misctest
sendserial_SOURCES = sendserial.cpp
misctest_SOURCES = misctest.cpp
mmmenugfx_SOURCES = mmmenugfx.cpp
configtest_SOURCES = configtest.cpp
debugtest_SOURCES = debugtest.cpp
gprintertest_SOURCES = gprintertest.cpp
combotest_SOURCES = combotest.cpp
profileuitest_SOURCES = profileuitest.cpp
mkthumbnail_SOURCES = mkthumbnail.cpp
mkrgbprofile_SOURCES = mkrgbprofile.cpp
mkgreyprofile_SOURCES = mkgreyprofile.cpp
mklabprofile_SOURCES = mklabprofile.cpp
composite_SOURCES = composite.cpp
imgsrctest_SOURCES = imgsrctest.cpp
jpegcheck_SOURCES = jpegcheck.cpp
pvtest_SOURCES = pvtest.cpp
threadtest_SOURCES = threadtest.cpp
printqueuetest_SOURCES = printqueuetest.cpp
stpuitest_SOURCES = stpuitest.cpp
jpegscan_SOURCES = jpegscan.cpp
dirtreetest_SOURCES = dirtreetest.cpp
tabui_SOURCES = tabui.cpp
errorqueuetest_SOURCES = errorqueuetest.cpp
smartptrtest_SOURCES = smartptrtest.cpp
imgsinktest_SOURCES = imgsinktest.cpp
LDADD = \
argyllsupport/libargyllsupport.la \
imageutils/libimageutils.la \
gp_cppsupport/libgp_cppsupport.la \
miscwidgets/libmiscwidgets.la \
imagesource/libimagesource.la \
profilemanager/libprofilemanager.la \
support/libsupport.la \
stpui_widgets/libstpui_widgets.la \
stp_support/libstp_support.la \
pixbufthumbnail/libpixbufthumbnail.la \
$(LIBINTL) $(LIBM_LIBS) $(GETOPT_LIBS) $(JPEG_LIBS) $(PNM_LIBS) $(TIFF_LIBS) $(LCMS_LIBS) $(GP_LIBS) $(GTK2_LIBS)
imagesource/libimagesource.la:
cd imagesource
$(MAKE) libimagesource.la
support/libsupport.la:
cd support
$(MAKE) libsupport.la
profilemanager/libprofilemanager.la:
cd profilemanager
$(MAKE) libprofilemanager.la
stpui_widgets/libstpui_widgets.la:
cd stpui_widgets
$(MAKE) libstpui_widgets.la
stp_support/libstp_support.la:
cd stp_support
$(MAKE) libstp_support.la
gp_cppsupport/libgp_cppsupport.la:
cd gp_cppsupport
$(MAKE) libgp_cppsupport.la
pixbufthumbnail/libpixbufthumbnail.la:
cd pixbufthumbnail
$(MAKE) libpixbufthumbnail.la
EXTRA_DIST = COPYING README TODO gettext.h
ACLOCAL_AMFLAGS = -I m4