diff options
| author | ruki <[email protected]> | 2015-04-23 11:34:12 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2015-04-23 11:36:43 +0800 |
| commit | 9a75fb2b8072c9dc5a7f862610e6b19386dcecea (patch) | |
| tree | 943fc74b2267eeea6dcb653c9337614396afeae9 /core/src/xmake/makefile | |
new project
Diffstat (limited to 'core/src/xmake/makefile')
| -rwxr-xr-x | core/src/xmake/makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/core/src/xmake/makefile b/core/src/xmake/makefile new file mode 100755 index 000000000..92499372a --- /dev/null +++ b/core/src/xmake/makefile @@ -0,0 +1,36 @@ +# 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 + + +# flags +xmake_CXFLAGS += -D__tb_prefix__=\"xmake\" + +# header files +xmake_INC_FILES = \ + xmake.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 + |
