diff options
Diffstat (limited to 'PE/nmakefile')
-rw-r--r-- | PE/nmakefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/PE/nmakefile b/PE/nmakefile new file mode 100644 index 0000000..f508ab3 --- /dev/null +++ b/PE/nmakefile @@ -0,0 +1,13 @@ +_CCFLAGS = /I ..\includes /I ..\generic\include /I ..\..\zlib
+_LIBS = "..\MSVC\Baltisot - generic\Debug\Baltisot - generic.lib" "..\MSVC\PSX-Bundle - library\Debug\PSX-Bundle - library.lib" ..\..\zlib\dll32\zlib.lib ..\..\zlib\static32\zlibstat.lib
+
+!include $(COMMONTOOLSPATH)\master.mak
+
+#------------------------------------------------------------------
+
+TARGETS = extract.exe extract-rooms.exe extract-various.exe reinsert.exe
+
+all : $(TARGETS)
+
+clean :
+ -del /Q $(TARGETS) *.ilk *.pdb *.obj
|