aboutsummaryrefslogtreecommitdiff
path: root/externals/build/win/makefile
diff options
context:
space:
mode:
authorcarmen rocco <ix9@users.sourceforge.net>2004-07-07 14:34:54 +0000
committercarmen rocco <ix9@users.sourceforge.net>2004-07-07 14:34:54 +0000
commit5849adb43d110c488b0ac872e7de9e32b901ad5f (patch)
tree454ee419967e794441496a69a34ffea1eeabc5e8 /externals/build/win/makefile
parent9ceb99a5e618c17eecc5c5007508f1400ac0b70f (diff)
momgviisthesuck
svn path=/trunk/; revision=1841
Diffstat (limited to 'externals/build/win/makefile')
-rw-r--r--externals/build/win/makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/externals/build/win/makefile b/externals/build/win/makefile
index e6d3c706..94d3212c 100644
--- a/externals/build/win/makefile
+++ b/externals/build/win/makefile
@@ -6,15 +6,15 @@ all: $(EXTERNALS:.c=.dll)
.SUFFIXES: .dll
-CFLAGS = -DPD -DWINDOWS -Wall -W -Wshadow -Wstrict-prototypes \
+CFLAGS = -DPD -DMSW -DNT -Wall -W -Wshadow -Wstrict-prototypes \
-Wno-unused -Wno-parentheses -Wno-switch
-INCLUDE = -I. -I.. -I../include
+INCLUDE = -I. -I.. -I../include -I/usr/local/include
%.dll: ../src/%.c
$(CC) $(CFLAGS) $(INCLUDE) -o "$*.o" -c "../src/$*.c"
gcc -shared -o "$*.dll" "$*.o" $(prefix)/bin/pd.dll \
- `test -f $*.libs && cat $*.libs`
+ `test -f $*.libs && cat $*.libs` -L/usr/local/lib
clean:
-rm *.a *.def *.dll *.o