aboutsummaryrefslogtreecommitdiff
path: root/signal/Makefile
diff options
context:
space:
mode:
authorGuenter Geiger <ggeiger@users.sourceforge.net>2002-06-17 10:13:57 +0000
committerGuenter Geiger <ggeiger@users.sourceforge.net>2002-06-17 10:13:57 +0000
commitfc3d3c0a4f110a23335398c327ac0a4fc949d5cb (patch)
tree1849d6afbe34cee9cec97bdb2295401f5126870b /signal/Makefile
This commit was generated by cvs2svn to compensate for changes in r12,svn2git-root
which included commits to RCS files with non-trunk default branches. svn path=/trunk/externals/ggee/; revision=13
Diffstat (limited to 'signal/Makefile')
-rwxr-xr-xsignal/Makefile51
1 files changed, 51 insertions, 0 deletions
diff --git a/signal/Makefile b/signal/Makefile
new file mode 100755
index 0000000..ebf4c30
--- /dev/null
+++ b/signal/Makefile
@@ -0,0 +1,51 @@
+current: nt
+
+
+# TARGETS += stk
+
+VERSION = \"0.16\"
+
+.SUFFIXES: .dll .obj
+# ----------------------- NT ----------------------------
+
+NTOBJECTS = *.obj
+NTDLLS = *.dll
+
+PDNTCFLAGS = /W3 /WX /DNT /DPD /nologo
+
+PDNTINCLUDE = /I. /I..\..\pd\src /I..\include
+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) sfplay~.obj /export:sfplay_tilde_setup
+ -link /dll $(PDNTLIB) atan2~.obj /export:atan2_tilde_setup
+ -link /dll $(PDNTLIB) exp~.obj /export:exp_tilde_setup
+ -link /dll $(PDNTLIB) log~.obj /export:log_tilde_setup
+ -link /dll $(PDNTLIB) mixer~.obj /export:mixer_tilde_setup
+ -link /dll $(PDNTLIB) sfwrite~.obj /export:swrite_tilde_setup
+ -link /dll $(PDNTLIB) streamin~.obj /export:streamin_tilde_setup
+ -link /dll $(PDNTLIB) streamout~.obj /export:streamout_tilde_setup
+ -link /dll $(PDNTLIB) moog~.obj /export:moog_tilde_setup
+
+clean:
+ del *.obj
+ del *.dll
+
+
+.c.obj:
+ -cl $(PDNTCFLAGS) $(PDNTINCLUDE) /c $*.c
+
+.obj.dll:
+
+
+
+