36 lines
723 B
Makefile
Executable File
36 lines
723 B
Makefile
Executable File
include $(MAKEDIR)/Makefile.base
|
|
|
|
# use: ls -d tjp/core/*/ tjp/core/*/*/ | rev | cut -c 2- | rev | sed 's/$/ \\/'
|
|
|
|
PROJECTS := \
|
|
tjp/core/graphics \
|
|
tjp/core/graphics/atlas \
|
|
tjp/core/graphics/vuku \
|
|
tjp/core/graphics/soft \
|
|
|
|
|
|
ifneq (Linux,$(SYS_NAME))
|
|
|
|
PROJECTS += \
|
|
tjp/core/graphics/imgui \
|
|
tjp/core/graphics/atlas/vuku \
|
|
tjp/core/graphics/atlas/opengl \
|
|
|
|
endif
|
|
|
|
ifneq (Darwin,$(SYS_NAME))
|
|
_FLAGS := $(_FLAGS) -DGLES_SILENCE_DEPRECATION -DGL_SILENCE_DEPRECATION
|
|
endif
|
|
|
|
#SRC_PCH := tjp/core/Precompile.pch
|
|
|
|
INCPATH := \
|
|
$(timprepscius.libraries.cpp.include) \
|
|
$(timprepscius.core.include)
|
|
|
|
LIBFILE := libCore_Graphics_Render.a
|
|
|
|
COPYTO := $(LIBRARIES_PROJECT)
|
|
|
|
include $(MAKEDIR)/Makefile.lib
|