diff options
author | pixel <pixel> | 2003-09-05 23:50:16 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-09-05 23:50:16 +0000 |
commit | 44adf768555ecd211f90cbf4d87b44ba42044d86 (patch) | |
tree | 662018d76d3f2f19ed58ea8e94c54445fc2a47e4 /PE/nmakefile | |
parent | 7ff77f49e9577ff5b63d7f2e2ce7651257bf1d63 (diff) |
Continuing toying
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
|