missing project/build files
[client-tools.git] / src / engine / server / application / PhonyApp / build / linux / Makefile
blob59b7d542cbfa44102d179f7d984ffc9371422c50
1 include ../../../../../build/linux/platformDefs.mak
2 include ../../../../../build/shared_unix/defs.mak
4 OUTPUT = Phony
6 #######################################################
7 # standard defines
8 #######################################################
10 DEBUG_LINK_FLAGS +=-lpthread -ldl
11 RELEASE_LINK_FLAGS +=-lpthread -ldl
13 #######################################################
14 # includes & linked libraries
15 #######################################################
17 INCLUDE_DIRS = \
18 ../../src/linux \
19 ../../src/shared \
20 $(COMMON_ENGINE_INCLUDES) \
22 DEBUG_LINK_LIBRARIES = \
23 $(COMMON_ENGINE_DEBUG_LIBS) \
24 $(STL_LIB) \
25 $(ZLIB_LIB)
28 DEBUG_SHARED_LIBRARIES= \
29 $(COMMON_ENGINE_SHARED_DEBUG_LIBS) \
31 #######################################################
32 # Source file list
33 #######################################################
35 #SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
36 PLATFORM_SRC_LIST =$(shell find $$PWD/../../src/linux -name "*.cpp")
37 SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
40 #######################################################
41 # Custom build steps
42 #######################################################
44 debug_custom_step:
46 release_custom_step:
48 #######################################################
49 # include the common makefile
50 #######################################################
52 include ../../../../../build/shared_unix/application.mak