aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormusil <tmusil@users.sourceforge.net>2011-11-16 16:18:46 +0000
committermusil <tmusil@users.sourceforge.net>2011-11-16 16:18:46 +0000
commit18359778c89a4cbda77f7fe15ff2b02b39d82672 (patch)
tree52a990585d38954f14602e8278402815e7a5a904
parent76573f4923ebe3391ffcb2d6555d1268210d0e21 (diff)
4 new objects
svn path=/trunk/externals/iem/iem_tab/; revision=15768
-rw-r--r--src/makefile_d_fat10
-rw-r--r--src/makefile_linux4
2 files changed, 12 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
diff --git a/src/makefile_linux b/src/makefile_linux
index b2f63b5..9a91e29 100644
--- a/src/makefile_linux
+++ b/src/makefile_linux
@@ -33,6 +33,8 @@ SRC = \
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 \
@@ -56,9 +58,11 @@ SRC = \
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 \