aboutsummaryrefslogtreecommitdiff
path: root/other/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'other/Makefile')
-rwxr-xr-xother/Makefile44
1 files changed, 44 insertions, 0 deletions
diff --git a/other/Makefile b/other/Makefile
new file mode 100755
index 0000000..acd7225
--- /dev/null
+++ b/other/Makefile
@@ -0,0 +1,44 @@
+current: nt
+
+
+# TARGETS += stk
+
+VERSION = \"0.24\"
+
+.SUFFIXES: .dll .obj
+# ----------------------- NT ----------------------------
+
+NTOBJECTS = *.obj
+NTDLLS = *.dll
+
+PDNTCFLAGS = /W3 /WX /DNT /DPD /nologo
+
+PDNTINCLUDE = /I. /I..\..\pd\src
+ProgramFiles = C:\Program Files
+PDNTLDIR = "$(ProgramFiles)\Microsoft Visual Studio\Vc98\lib"
+#PDNTLDIR = "C:\Programme\Msdev\Vc98\lib"
+
+PDNTLIB = $(PDNTLDIR)\libc.lib \
+ $(PDNTLDIR)\oldnames.lib \
+ $(PDNTLDIR)\wsock32.lib \
+ $(PDNTLDIR)\kernel32.lib \
+ $(PDNTLDIR)\uuid.lib \
+ ..\..\pd\bin\pd.lib
+
+nt: $(NTOBJECTS)
+ -link /dll $(PDNTLIB) vbap.obj /export:vbap_setup
+
+
+clean:
+ del *.obj
+ del *.dll
+
+
+.c.obj:
+ -cl $(PDNTCFLAGS) $(PDNTINCLUDE) /c $*.c
+
+.obj.dll:
+
+
+
+