blob: 9453944a7298ebcfd858591fad2ff2225aca8bbd (
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_IUP=Yes
cdtest_led.c: cdtest.led
ledc -f cdtest_loadled -o cdtest_led.c cdtest.led
USE_STATIC = Yes
#IUP = ../../../iup
CD = ../..
ifneq ($(findstring Win, $(TEC_SYSNAME)), )
LIBS = cdpdflib
else
SLIB = $(CD)/lib/$(TEC_UNAME)/libcdpdflib.a
endif
|