blob: 7a9b7754cd2757100822dca8a41433f37e56b79c (
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
|
# preifx
include $(PRO_DIR)/prefix.mak
# module name
NAMES = demo
# type
demo_TYPE = BIN
# files
demo_C_FILES += xmake
# packages
demo_PKGS-$(TBOX) += tbox
demo_PKGS-$(BASE) += base
# others
demo_LIBS += xmake$(DTYPE) luajit$(DTYPE)
demo_INC_DIRS += ../ ../luajit/src
demo_LIB_DIRS += ../xmake ../luajit
demo_CXFLAGS += -D__tb_prefix__=\"xmake\"
# suffix
include $(PRO_DIR)/suffix.mak
|