add memset asm code
[ti-x.git] / prefix.mak
blobb6e4de0f69fed61b8ddb1a8cf55524582796ceeb
1 # prefix makefile
3 # path seperator
4 ifeq ($(HOST), linux)
5 _ = /
6 endif
8 ifeq ($(HOST), windows)
9 _ = \\
10 endif
12 # path
13 SRC_DIR = $(PRO_DIR)$(_)src
14 BIN_DIR = $(PRO_DIR)$(_)bin$(_)$(PLAT)
15 INC_DIR = $(PRO_DIR)$(_)inc$(_)$(PLAT)
16 LIB_DIR = $(PRO_DIR)$(_)lib$(_)$(PLAT)
17 PLAT_DIR = $(PRO_DIR)$(_)plat$(_)$(PLAT)
18 PSRC_DIR = $(PRO_DIR)$(_)src$(_)pro
20 # exports
21 export _
23 # architecture makefile
24 -include $(PLAT_DIR)$(_)prefix.mak