aboutsummaryrefslogtreecommitdiff
path: root/ff/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ff/makefile')
-rw-r--r--ff/makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/ff/makefile b/ff/makefile
new file mode 100644
index 0000000..99554e3
--- /dev/null
+++ b/ff/makefile
@@ -0,0 +1,7 @@
+ff: ff.c
+ gcc $(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
+
+