aboutsummaryrefslogtreecommitdiff
path: root/ff/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ff/makefile')
-rw-r--r--ff/makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/ff/makefile b/ff/makefile
new file mode 100644
index 0000000..0ed84d5
--- /dev/null
+++ b/ff/makefile
@@ -0,0 +1,14 @@
+
+CFLAGS = -O2 -W -Wall
+
+all: ff
+
+ff: 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