diff options
author | pixel <pixel> | 2003-09-05 12:48:10 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-09-05 12:48:10 +0000 |
commit | 97f6a480777588b97fe1016692a5ca7de7c0bb78 (patch) | |
tree | 6ee2a629b6ee0839477072f139a12f780c18d76d /Xenogears | |
parent | 6c8adf89100d24938645d20533ff08b53b0400bd (diff) |
Starting to build the project MSVC - continued
Diffstat (limited to 'Xenogears')
-rw-r--r-- | Xenogears/Decrypt.cpp | 1 | ||||
-rw-r--r-- | Xenogears/nmakefile | 13 |
2 files changed, 13 insertions, 1 deletions
diff --git a/Xenogears/Decrypt.cpp b/Xenogears/Decrypt.cpp index 8bee7c3..0683078 100644 --- a/Xenogears/Decrypt.cpp +++ b/Xenogears/Decrypt.cpp @@ -1,7 +1,6 @@ #include <stdio.h> #include <string.h> #include <stdlib.h> -#include <unistd.h> #include "generic.h" #include "Input.h" #include "Output.h" diff --git a/Xenogears/nmakefile b/Xenogears/nmakefile new file mode 100644 index 0000000..3e3f4ad --- /dev/null +++ b/Xenogears/nmakefile @@ -0,0 +1,13 @@ +_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 = decrypt.exe
+
+all : $(TARGETS)
+
+clean :
+ -del /Q $(TARGETS) *.ilk *.pdb *.obj
|