summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorscuri <scuri>2010-05-28 19:58:19 +0000
committerscuri <scuri>2010-05-28 19:58:19 +0000
commit82d2c9cac84e284e9e232b8f46db5e66e38a0d09 (patch)
tree0b30ddae10c42abc7735f844ab057234da3e0b39 /test
parenta7a26229ffdcac9b23adbc51f4df7af30bb2cc0c (diff)
*** empty log message ***
Diffstat (limited to 'test')
-rw-r--r--test/simple/config.mak19
1 files changed, 16 insertions, 3 deletions
diff --git a/test/simple/config.mak b/test/simple/config.mak
index 2777b7d..bf10d3b 100644
--- a/test/simple/config.mak
+++ b/test/simple/config.mak
@@ -30,8 +30,21 @@ USE_STATIC = Yes
#USE_IM = Yes
ifneq ($(findstring Win, $(TEC_SYSNAME)), )
- LIBS = cdpdf pdflib cdcontextplus gdiplus
+ LIBS = cdpdf pdflib
+ ifndef USE_GDK
+ LIBS += cdcontextplus gdiplus
+ endif
else
- SLIB = $(CD)/lib/$(TEC_UNAME)/libcdpdf.a $(CD)/lib/$(TEC_UNAME)/libpdflib.a $(CD)/lib/$(TEC_UNAME)/libcdcontextplus.a
- LIBS = Xrender Xft
+ ifdef DBG_DIR
+ CDLIB = $(CD)/lib/$(TEC_UNAME)d
+ else
+ CDLIB = $(CD)/lib/$(TEC_UNAME)
+ endif
+
+ SLIB = $(CDLIB)/libcdpdf.a $(CDLIB)/libpdflib.a
+ ifndef USE_GDK
+ SLIB += $(CDLIB)/libcdcontextplus.a
+ LIBS = Xrender Xft
+ else
+ endif
endif