aboutsummaryrefslogtreecommitdiff
path: root/ff/makefile
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2004-05-25 04:42:16 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:08:21 +0200
commit91b96a1dc7b49d4a803e09b3341ec18ecf6132b3 (patch)
tree64bacb0f352c74ec35da0e4ab105195c64dc033f /ff/makefile
parentad6b970ca67d8280fe83160335c2b8525f5ddace (diff)
added compiler warnings and fixed most warnings
svn path=/trunk/externals/ff/; revision=1765
Diffstat (limited to 'ff/makefile')
-rw-r--r--ff/makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/ff/makefile b/ff/makefile
index 99554e3..7708283 100644
--- a/ff/makefile
+++ b/ff/makefile
@@ -1,7 +1,14 @@
+
+CFLAGS = -O2 -W -Wall
+
+all: ff
+
ff: ff.c
- gcc $(CFLAGS) $(LINUXCFLAGS) $(LINUXINCLUDE) -o ff.o -c ff.c
+ $(CC) $(CFLAGS) $(LINUXCFLAGS) $(LINUXINCLUDE) -o ff.o -c ff.c
ld -export_dynamic -shared -o ff.pd_linux ff.o -lc -lm
strip --strip-unneeded ff.pd_linux
rm ff.o
+clean:
+ rm -f *~ *.pd_* *.dll *.o