From 2da3b12fd8b94934e3bde70692e650d6df694391 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 16 Apr 2003 19:19:57 +0000 Subject: builds all of the externals now svn path=/trunk/externals/hcs/; revision=573 --- Makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f18bc94 --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +current: + echo make pd_linux + +clean: ; rm -f *.pd_linux *.o + +# ----------------------- LINUX i386 ----------------------- + +pd_linux: pan_gogins~.pd_linux rawmouse.pd_linux rawevent.pd_linux rawjoystick.pd_linux + +.SUFFIXES: .pd_linux + +LINUXCFLAGS = -DUNIX -DPD -O2 -funroll-loops -fomit-frame-pointer \ + -Wall -W -Wshadow -Wstrict-prototypes -Werror \ + -Wno-unused -Wno-parentheses -Wno-switch -g + +LINUXINCLUDE = -I/usr/local/lib/pd/include -I../../pd/src + +.c.pd_linux: + cc $(LINUXCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c + ld -export_dynamic -shared -o $*.pd_linux $*.o -lc -lm + strip --strip-unneeded $*.pd_linux + rm $*.o + -- cgit v1.2.1