first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / core / applications / bundler / makefile
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 LAST_TARGETS += make_stub
14 ifeq "$(OP_SYSTEM)" "WIN32"
15   LOCAL_HEADERS += $(THIRD_PARTY_DIR)/zlib/include
16   LOCAL_LIBRARIES += $(THIRD_PARTY_DIR)/zlib/lib
17   LIBS_USED += zlib.lib
18 endif
19 ifeq "$(OP_SYSTEM)" "UNIX"
20   LIBS_USED += z
21 endif
22
23 include cpp/rules.def
24
25 make_stub:
26         $(MAKE) -f makefile.stub
27