From a82556379caadef548ce8978d404d0e3ece5446c Mon Sep 17 00:00:00 2001 From: Gerard van Dongen Date: Sat, 18 Oct 2003 13:38:48 +0000 Subject: 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 --- ff/makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 ff/makefile (limited to 'ff/makefile') 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 + + -- cgit v1.2.1 From 91b96a1dc7b49d4a803e09b3341ec18ecf6132b3 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 25 May 2004 04:42:16 +0000 Subject: added compiler warnings and fixed most warnings svn path=/trunk/externals/ff/; revision=1765 --- ff/makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'ff/makefile') 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 -- cgit v1.2.1 From 03ed882eb5f31d961857c8c72d33a8879e7dff2e Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 9 Jun 2009 17:34:48 +0000 Subject: replaced -export_dynamic with --export-dynamic and -Wl,--export-dynamic where appropriate. It seems that once upon a time -export_dynamic was a real flag. Now it means -e xport_dynamic, meaning set the entry symbol to xport_dynamic, giving this error message: /usr/bin/ld: warning: cannot find entry symbol xport_dynamic; defaulting to 0000000000001b60 svn path=/trunk/externals/ff/; revision=11724 --- ff/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ff/makefile') diff --git a/ff/makefile b/ff/makefile index 7708283..0ed84d5 100644 --- a/ff/makefile +++ b/ff/makefile @@ -5,7 +5,7 @@ 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 + ld --export-dynamic -shared -o ff.pd_linux ff.o -lc -lm strip --strip-unneeded ff.pd_linux rm ff.o -- cgit v1.2.1