aboutsummaryrefslogtreecommitdiff
path: root/src/iem_t3_lib/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/iem_t3_lib/makefile')
-rw-r--r--src/iem_t3_lib/makefile56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/iem_t3_lib/makefile b/src/iem_t3_lib/makefile
new file mode 100644
index 0000000..34d19d6
--- /dev/null
+++ b/src/iem_t3_lib/makefile
@@ -0,0 +1,56 @@
+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 -Wall -W -Werror -Wno-unused \
+ -Wno-parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer \
+ -DDL_OPEN
+
+SYSTEM = $(shell uname -m)
+
+# the sources
+
+SRC = sigt3_line.c \
+ sigt3_sig.c \
+ t3_bpe.c \
+ t3_delay.c \
+ t3_metro.c \
+ t3_timer.c \
+ iem_t3_lib.c
+
+TARGET = iem_t3_lib.pd_linux
+
+
+OBJ = $(SRC:.c=.o)
+
+#
+# ------------------ targets ------------------------------------
+#
+
+clean:
+ rm ../../lib/$(TARGET)
+ rm *.o
+
+all: $(OBJ)
+
+ @echo :: $(OBJ)
+
+ ld $(LDFLAGS) -o $(TARGET) *.o $(LIB)
+ strip --strip-unneeded $(TARGET)
+ mv $(TARGET) ../../lib
+ rm *.o
+
+$(OBJ) : %.o : %.c
+ touch $*.c
+ cc $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c
+
+
+
+