first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / core / applications / bundler / makefile.stub
1 CONSOLE_MODE = true
2
3 include cpp/variables.def
4
5 PROJECT = app_bundle_stub
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 = unpacker_stub.exe
13 ifeq "$(OP_SYSTEM)" "WIN32"
14   LIBS_USED += libcmt.lib shlwapi.lib zlib.lib
15   LOAD_FLAG_PREFIX += -nodefaultlib:msvcrt.lib 
16   COMPILER_FLAGS += -MT
17   LOCAL_HEADERS += $(THIRD_PARTY_DIR)/zlib/include
18   LOCAL_LIBRARIES += $(THIRD_PARTY_DIR)/zlib/lib
19 else
20   LIBS_USED += z
21 endif
22
23 include cpp/rules.def
24