57ac43336f81b70a2464da547e9e6f604c4e09df
[feisty_meow.git] / nucleus / applications / bundler / makefile.bundle_creator
1 CONSOLE_MODE = true
2
3 include cpp/variables.def
4
5 PROJECT = app_bundle
6 TYPE = application
7 SOURCE = common_bundle.cpp 
8 ifeq "$(OMIT_VERSIONS)" ""
9   SOURCE += bundler_version.rc
10 endif
11 DEFINITIONS += __BUILD_STATIC_APPLICATION__=t
12 TARGETS = bundle_creator.exe
13
14 #hmmm: these should be done with a USE_ZLIB macro.
15 ifeq "$(COMPILER)" "VISUAL_CPP"
16   LOCAL_HEADERS += $(THIRD_PARTY_DIR)/zlib/include
17   LOCAL_LIBRARIES += $(THIRD_PARTY_DIR)/zlib/lib
18   LIBS_USED += zlib.lib
19 else
20   LIBS_USED += z
21 endif
22
23 include cpp/rules.def
24