123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- ## --------------------------------------------------------------------
- ## file name: makefile
- ## comment: common_module
- ## create date: 2014��04��02��
- ## author:
- ## copywrite: sininm game
- ## --------------------------------------------------------------------
- FIRST_TARGET_NAME=t_testshmdll
- OUTPUT_NAME=testshmdll
- OUTPUT_SUFFIX=.so
- include ../makefile_path.in
- #make command define
- include ../makefile.in
- #engine mod modify
- include ../makefile_engine_mod.in
- DIRS := ./
- CPPFILES := $(foreach dir,$(DIRS),$(FIND_CPPFILES))
- CFILES := $(foreach dir,$(DIRS),$(FIND_CFILES))
- # crossplatform
- # inner_header
- # share_header
- #switch flag
- #USE_PTHREAD = 1
- #include path
- INCLUDE_PATH := -I$(SHM_HEADER_PATH)
- INCLUDE_PATH += -I./
- #implicit link dll
- IMPORT_LIB := -lrt -ldl
- #modify compile flag
- #CFLAGS +=
- #CPPFLAGS +=
- #modify macro define
- #MACRO_DEFINE +=
- LINK_TYPE = $(LINK_SHARE)
- #domake
- include ../makefile.do
|