]> git.localhorst.tv Git - orbi.git/blob - build/base.mk
initial collision tests
[orbi.git] / build / base.mk
1 BASE_DIRS := $(shell cd $(TOP); find src -type d)
2 BASE_SRCS := $(shell cd $(TOP); find src -mindepth 2 -type f -name '*.cpp')
3 BASE_OBJS := $(BASE_SRCS:.cpp=.o)
4
5 ALL_DIRS += $(BASE_DIRS)
6 ALL_OBJS += $(BASE_OBJS)
7
8 BASE_FLAGS = \
9         $(CPPFLAGS) \
10         $(CXXFLAGS) \
11         $(strip \
12                 $(CPPUNIT_FLAGS) \
13                 $(SDL_FLAGS) \
14                 $(SDL_IMG_FLAGS) \
15         )