current: all

.SUFFIXES: .d_fat

PD_INSTALL_PATH = "/Applications/Pd.app/Contents/Resources"

INCLUDE = -I. -I$(PD_INSTALL_PATH)/src

CFLAGS =-DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \
        -Wno-unused -Wno-parentheses -Wno-switch

LFLAGS = -bundle -undefined suppress -flat_namespace

# the sources
SRC = $(wildcard *.c)

TARGET = $(SRC:.c=.d_fat)


OBJ = $(SRC:.c=.o) 

#
#  ------------------ targets ------------------------------------
#

clean:
	rm -f $(TARGET)
	rm -f *.o

all: $(TARGET)

$(OBJ) : %.o : %.c
	$(CC) -arch i386 -arch ppc $(CFLAGS) $(INCLUDE) -c -o $@ $*.c


$(TARGET): %.d_fat : %.o
	@echo :: $(OBJ)
	$(CC) -arch i386 -arch ppc $(LFLAGS) -o $@ $*.o
	strip -S -x $@
	cp $(TARGET) ..

