summaryrefslogtreecommitdiff
path: root/nmakefile
diff options
context:
space:
mode:
authorpixel <pixel>2003-09-05 12:48:10 +0000
committerpixel <pixel>2003-09-05 12:48:10 +0000
commit97f6a480777588b97fe1016692a5ca7de7c0bb78 (patch)
tree6ee2a629b6ee0839477072f139a12f780c18d76d /nmakefile
parent6c8adf89100d24938645d20533ff08b53b0400bd (diff)
Starting to build the project MSVC - continued
Diffstat (limited to 'nmakefile')
-rw-r--r--nmakefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/nmakefile b/nmakefile
new file mode 100644
index 0000000..9241859
--- /dev/null
+++ b/nmakefile
@@ -0,0 +1,16 @@
+_CCFLAGS = /I includes /I generic\include /I ..\zlib
+_LIBS = "MSVC\Baltisot - generic\Debug\Baltisot - generic.lib" ..\zlib\zlibdll.lib ..\zlib\zlibstat.lib
+
+!include $(COMMONTOOLSPATH)\master.mak
+
+#------------------------------------------------------------------
+
+TARGETS = bgrep.exe lzss-main.exe cd-tool.exe crypto-search.exe
+SUBDIRS = Xenogears
+
+all : $(TARGETS)
+ for %i in ( $(SUBDIRS) ) do $(_MAKE_IN_DIR) %i all
+
+clean :
+ -del /Q $(TARGETS) *.ilk *.pdb *.obj
+ for %i in ( $(SUBDIRS) ) do $(_MAKE_IN_DIR) %i clean