blob: 0b65dc2a2f1c3cd40f83f9eb4e744e3f0307f7fd (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# prefix
include $(PRO_DIR)/prefix.mak
# module name
NAMES = xmake
# module type
xmake_TYPE = LIB
# config
xmake_CONFIG = y
# core files
xmake_C_FILES += \
xmake \
machine \
path/absolute \
path/translate \
string/startswith
# flags
xmake_CXFLAGS += -D__tb_prefix__=\"xmake\"
# header files
xmake_INC_FILES = \
xmake.h \
machine.h \
config.h \
prefix.h \
prefix/prefix.h \
prefix/config.h \
prefix/version.h
# demo
SUB_PROS-$(DEMO) += ../demo
# suffix
include $(PRO_DIR)/suffix.mak
|