aboutsummaryrefslogtreecommitdiff
path: root/filters/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 /filters/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 'filters/Makefile')
-rwxr-xr-xfilters/Makefile50
1 files changed, 50 insertions, 0 deletions
diff --git a/filters/Makefile b/filters/Makefile
new file mode 100755
index 0000000..f002498
--- /dev/null
+++ b/filters/Makefile
@@ -0,0 +1,50 @@
+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) bandpass.obj /export:bandpass_setup
+ -link /dll $(PDNTLIB) highpass.obj /export:highpass_setup
+ -link /dll $(PDNTLIB) highshelf.obj /export:highshelf_setup
+ -link /dll $(PDNTLIB) hlshelf.obj /export:hlshelf_setup
+ -link /dll $(PDNTLIB) lowpass.obj /export:lowpass_setup
+ -link /dll $(PDNTLIB) notch.obj /export:notch_setup
+ -link /dll $(PDNTLIB) equalizer.obj /export:equalizer_setup
+
+
+clean:
+ del *.obj
+ del *.dll
+
+
+.c.obj:
+ -cl $(PDNTCFLAGS) $(PDNTINCLUDE) /c $*.c
+
+.obj.dll:
+
+
+
+