aboutsummaryrefslogtreecommitdiff
path: root/src/makefile_d_fat
diff options
context:
space:
mode:
Diffstat (limited to 'src/makefile_d_fat')
-rw-r--r--src/makefile_d_fat10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/makefile_d_fat b/src/makefile_d_fat
index d00395f..0473ba8 100644
--- a/src/makefile_d_fat
+++ b/src/makefile_d_fat
@@ -2,7 +2,7 @@ current: all
.SUFFIXES: .d_fat
-PD_INSTALL_PATH ?= "/Applications/Pd.app/Contents/Resources"
+PD_INSTALL_PATH = "/Applications/Pd.app/Contents/Resources"
INCLUDE = -I. -I$(PD_INSTALL_PATH)/src
@@ -13,7 +13,8 @@ LFLAGS = -bundle -undefined suppress -flat_namespace
# the sources
-SRC = tab_abs.c \
+SRC = \
+ tab_abs.c \
tab_add.c \
tab_add_scalar.c \
tab_carth2polar.c \
@@ -24,6 +25,8 @@ SRC = tab_abs.c \
tab_copy.c \
tab_counter.c \
tab_cross_corr.c \
+ tab_dbtopow.c \
+ tab_dbtorms.c \
tab_div.c \
tab_eq.c \
tab_eq_scalar.c \
@@ -47,9 +50,11 @@ SRC = tab_abs.c \
tab_mul_scalar.c \
tab_ne.c \
tab_ne_scalar.c \
+ tab_powtodb.c \
tab_reverse.c \
tab_rfft.c \
tab_rifft.c \
+ tab_rmstodb.c \
tab_sqrt.c \
tab_sub.c \
tab_sum.c \
@@ -75,6 +80,7 @@ all: $(OBJ)
mv $(TARGET) ..
$(OBJ) : %.o : %.c
+ touch $*.c
$(CC) -arch i386 -arch ppc $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c