37 lines
656 B
Makefile
Executable File
37 lines
656 B
Makefile
Executable File
include $(MAKEDIR)/Makefile.base
|
|
|
|
PROJECTS := \
|
|
. \
|
|
../core/algorithm/_tests \
|
|
../core/const_hash/_tests \
|
|
../core/const_expr/_tests \
|
|
../core/containers/_tests \
|
|
../core/iterators/_tests \
|
|
../core/log/_tests \
|
|
../core/ptr/_tests \
|
|
../core/ptr/using_info/_tests \
|
|
../core/ptr/using_maps/_tests \
|
|
../core/rtti/_tests \
|
|
../core/testing/_tests \
|
|
|
|
INCPATH := \
|
|
$(timprepscius.libraries.cpp.include) \
|
|
$(timprepscius.core.include)
|
|
|
|
LDPATH := \
|
|
$(timprepscius.libraries.cpp.link)
|
|
|
|
LIBS := \
|
|
-lCore_Zero
|
|
|
|
EXEFILE := Core_Zero_Tests.exe
|
|
|
|
#COPYTO := $(ROOTDIR)/.bin
|
|
|
|
ifeq (Darwin,$(SYS_NAME))
|
|
LIBS += -lc++
|
|
endif
|
|
|
|
|
|
include $(MAKEDIR)/Makefile.bin
|