aboutsummaryrefslogtreecommitdiff
path: root/Makefile.config_darwin
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.config_darwin')
-rw-r--r--Makefile.config_darwin25
1 files changed, 0 insertions, 25 deletions
diff --git a/Makefile.config_darwin b/Makefile.config_darwin
deleted file mode 100644
index 705d134..0000000
--- a/Makefile.config_darwin
+++ /dev/null
@@ -1,25 +0,0 @@
-PD_DIR = /usr/local/pd/src
-PD_EXECUTABLE = /usr/local/pd/bin/pd
-
-CREB_VERSION = 0.8
-
-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
-#CXX = g++
-
-.c.o:
- $(CC) $(CFLAGS) $(INCLUDE) -o $*.o -c $*.c
-.cc.o:
- $(CXX) $(CFLAGS) $(INCLUDE) -o $*.o -c $*.cc
-