aboutsummaryrefslogtreecommitdiff
path: root/iem_mp3/src/makefile_darwin
diff options
context:
space:
mode:
Diffstat (limited to 'iem_mp3/src/makefile_darwin')
-rw-r--r--iem_mp3/src/makefile_darwin49
1 files changed, 49 insertions, 0 deletions
diff --git a/iem_mp3/src/makefile_darwin b/iem_mp3/src/makefile_darwin
new file mode 100644
index 0000000..ed75052
--- /dev/null
+++ b/iem_mp3/src/makefile_darwin
@@ -0,0 +1,49 @@
+current: all
+
+.SUFFIXES: .pd_darwin
+
+PD_INSTALL_PATH = "/Applications/Pd.app/Contents/Resources"
+
+INCLUDE = -I. -I$(PD_INSTALL_PATH)/src
+
+LIB = -ldl -lm -lpthread
+
+CFLAGS = -DPD -DUNIX -g -Wall -W -Werror -Wno-unused \
+ -Wno-parentheses -Wno-switch -O2 -fno-strict-aliasing \
+ $(INCLUDE) $(UCFLAGS) $(AFLAGS) \
+
+MACOSXLINKFLAGS = -bundle -bundle_loader $(PD_INSTALL_PATH)/bin/pd
+
+SYSTEM = $(shell uname -m)
+
+# the sources
+
+SRC = mp3play~.c \
+ iem_mp3.c
+
+TARGET = iem_mp3.pd_darwin
+
+
+OBJ = $(SRC:.c=.o)
+
+#
+# ------------------ targets ------------------------------------
+#
+
+clean:
+ rm ../$(TARGET)
+ rm *.o
+
+all: $(OBJ)
+ @echo :: $(OBJ)
+ $(CC) $(MACOSXLINKFLAGS) -o $(TARGET) *.o $(LIB)
+ strip -S -x $(TARGET)
+ mv $(TARGET) ..
+
+$(OBJ) : %.o : %.c
+ touch $*.c
+ $(CC) $(CFLAGS) -DPD $(INCLUDE) -c -o $*.o $*.c
+
+
+
+