aboutsummaryrefslogtreecommitdiff
path: root/src/iem_t3_lib/makefile_linux
diff options
context:
space:
mode:
authormusil <tmusil@users.sourceforge.net>2006-11-08 16:24:39 +0000
committermusil <tmusil@users.sourceforge.net>2006-11-08 16:24:39 +0000
commitbd3d7f243bb5a105b99ce701774cf3d402396576 (patch)
tree21d6b9b9235b267381acd0ff2c6e49483cff8a1b /src/iem_t3_lib/makefile_linux
parent458a70fa945c0e2630d9585d88424e900d0f3e66 (diff)
change sig*.c to *~.c and sig* to *_tilde
change makefiles svn path=/trunk/externals/iemlib/; revision=6235
Diffstat (limited to 'src/iem_t3_lib/makefile_linux')
-rw-r--r--src/iem_t3_lib/makefile_linux51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/iem_t3_lib/makefile_linux b/src/iem_t3_lib/makefile_linux
new file mode 100644
index 0000000..3705f69
--- /dev/null
+++ b/src/iem_t3_lib/makefile_linux
@@ -0,0 +1,51 @@
+current: all
+
+.SUFFIXES: .pd_linux
+
+INCLUDE = -I. -I/usr/local/src/pd/src
+
+LDFLAGS = -export-dynamic -shared
+LIB = -ldl -lm -lpthread
+
+#select either the DBG and OPT compiler flags below:
+
+CFLAGS = -DPD -DUNIX -W -Werror -Wno-unused \
+ -Wno-parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer -fno-strict-aliasing \
+ -DDL_OPEN
+
+SYSTEM = $(shell uname -m)
+
+# the sources
+
+SRC = t3_bpe.c \
+ t3_delay.c \
+ t3_line~.c \
+ t3_metro.c \
+ t3_sig~.c \
+ t3_timer.c \
+ iem_t3_lib.c
+
+TARGET = iem_t3_lib.pd_linux
+
+
+OBJ = $(SRC:.c=.o)
+
+#
+# ------------------ targets ------------------------------------
+#
+
+clean:
+ rm $(TARGET)
+ rm *.o
+
+all: $(OBJ)
+ @echo :: $(OBJ)
+ $(LD) $(LDFLAGS) -o $(TARGET) *.o $(LIB)
+ strip --strip-unneeded $(TARGET)
+
+$(OBJ) : %.o : %.c
+ $(CC) $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c
+
+
+
+