aboutsummaryrefslogtreecommitdiff
path: root/ff/makefile
diff options
context:
space:
mode:
authorGerard van Dongen <vdongen@users.sourceforge.net>2003-10-18 13:38:48 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:08:20 +0200
commita82556379caadef548ce8978d404d0e3ece5446c (patch)
tree23fae959fa707880b0789a91f9b929d32fa6ada7 /ff/makefile
parent16d980cd5cc5539fef38c4cb99465aba97737073 (diff)
This commit was generated by cvs2svn to compensate for changes in r1106,
which included commits to RCS files with non-trunk default branches. svn path=/trunk/externals/ff/; revision=1107
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
+
+