blob: 6a71b59ec6d6edbeb5854d6188ad47e8a8de8269 (
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
|
APPNAME = cdtest
SRC = cdtest.c cdtest_led.c colorbar.c drivers.c list.c rubber.c
ifeq "$(TEC_SYSNAME)" "Win32"
SRC += cdtest.rc
endif
USE_CD=Yes
USE_IUP3=Yes
cdtest_led.c: cdtest.led
$(IUP)/bin/$(TEC_UNAME)/ledc -f cdtest_loadled -o cdtest_led.c cdtest.led
USE_STATIC = Yes
#IUP = ../../../iup
#CD = ../..
ifneq ($(findstring Win, $(TEC_SYSNAME)), )
LIBS = cdpdflib pdflib
else
SLIB = $(CD)/lib/$(TEC_UNAME)/libcdpdf.a $(CD)/lib/$(TEC_UNAME)/libpdflib.a
endif
|