From cdf8ded57019d5c905f16422d40be7b1a18ab3bc Mon Sep 17 00:00:00 2001 From: Tom Schouten Date: Tue, 21 Jan 2003 10:18:19 +0000 Subject: This commit was generated by cvs2svn to compensate for changes in r350, which included commits to RCS files with non-trunk default branches. svn path=/trunk/externals/creb/; revision=351 --- Makefile.config_darwin | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Makefile.config_darwin (limited to 'Makefile.config_darwin') diff --git a/Makefile.config_darwin b/Makefile.config_darwin new file mode 100644 index 0000000..b9c49eb --- /dev/null +++ b/Makefile.config_darwin @@ -0,0 +1,25 @@ +PD_DIR = /usr/local/pd/src +PD_EXECUTABLE = /usr/local/pd/bin/pd + +CREB_VERSION = 0.5 + +LIBNAME = creb.pd_darwin + +DEFS = -DPD -DCREB_VERSION=\"$(CREB_VERSION)\" + +CFLAGS = $(DEFS) -O2 -funroll-loops -fomit-frame-pointer \ + -Wall -W -Wstrict-prototypes -Werror \ + -Wno-unused -Wno-parentheses -Wno-switch # -Wshadow + +INCLUDE = -I$(PD_DIR) -I../include -I../include/dspi + +LIBFLAGS = -bundle -bundle_loader $(PD_EXECUTABLE) + +CC = gcc +CPLUSPLUS = g++ + +.c.o: + $(CC) $(CFLAGS) $(INCLUDE) -o $*.o -c $*.c +.cc.o: + $(CPLUSPLUS) $(CFLAGS) $(INCLUDE) -o $*.o -c $*.cc + -- cgit v1.2.1