33 lines
501 B
Makefile
Executable File
33 lines
501 B
Makefile
Executable File
include $(MAKEDIR)/Makefile.base
|
|
|
|
# use: ls -d core/*/ core/*/*/ | rev | cut -c 2- | rev | sed 's/$/ \\/'
|
|
|
|
PROJECTS := \
|
|
. \
|
|
../core/io/_tests \
|
|
|
|
|
|
INCPATH := \
|
|
$(timprepscius.libraries.cpp.include) \
|
|
$(timprepscius.core.include)
|
|
|
|
LDPATH := $(timprepscius.libraries.cpp.link)
|
|
|
|
LIBS := \
|
|
-lCore_Zero \
|
|
-lCore_Misc \
|
|
-lCore_IO \
|
|
-lCore_Allocator \
|
|
-lz_
|
|
|
|
EXEFILE := Core_IO_Tests.exe
|
|
|
|
#COPYTO := $(ROOTDIR)/.bin
|
|
|
|
ifeq (Darwin,$(SYS_NAME))
|
|
LIBS += -lc++
|
|
endif
|
|
|
|
|
|
include $(MAKEDIR)/Makefile.bin
|