may have fixed annoying make clean bugs
[feisty_meow.git] / nucleus / applications / bundler / makefile.bundle_creator
diff --git a/nucleus/applications/bundler/makefile.bundle_creator b/nucleus/applications/bundler/makefile.bundle_creator
new file mode 100644 (file)
index 0000000..57ac433
--- /dev/null
@@ -0,0 +1,24 @@
+CONSOLE_MODE = true
+
+include cpp/variables.def
+
+PROJECT = app_bundle
+TYPE = application
+SOURCE = common_bundle.cpp 
+ifeq "$(OMIT_VERSIONS)" ""
+  SOURCE += bundler_version.rc
+endif
+DEFINITIONS += __BUILD_STATIC_APPLICATION__=t
+TARGETS = bundle_creator.exe
+
+#hmmm: these should be done with a USE_ZLIB macro.
+ifeq "$(COMPILER)" "VISUAL_CPP"
+  LOCAL_HEADERS += $(THIRD_PARTY_DIR)/zlib/include
+  LOCAL_LIBRARIES += $(THIRD_PARTY_DIR)/zlib/lib
+  LIBS_USED += zlib.lib
+else
+  LIBS_USED += z
+endif
+
+include cpp/rules.def
+