aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranz Zotter <fzotter@users.sourceforge.net>2006-03-20 09:32:59 +0000
committerFranz Zotter <fzotter@users.sourceforge.net>2006-03-20 09:32:59 +0000
commit1a3e40d48c149ee543479788c8be25dd94441639 (patch)
tree64c2e4cc9e11de3b4c2f850baefddaeb186412c7
parent617d2f3d115d325767eaf82b396a432d5ebfef92 (diff)
Sorry, I forgot the Makefile.
svn path=/trunk/externals/iem/pdoctave/; revision=4743
-rw-r--r--Makefile77
1 files changed, 77 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..c3aaacf
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,77 @@
+current: all
+
+.SUFFIXES: .pd_linux
+
+INCLUDE = -I. -I/usr/local/lib/pd/src -I/home/fzotter/downloads/pd-0.39-0/pd/obj
+
+LDFLAGS = -export-dynamic -shared
+LIB = -ldl -lm -lpthread
+
+#select either the DBG and OPT compiler flags below:
+
+CFLAGS = -DPD -DUNIX -Wno-unused \
+ -Wno-parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer \
+ -DDL_OPEN
+
+SYSTEM = $(shell uname -m)
+
+# the sources
+
+SRC = pdoctave_dataframe.c \
+ pdoctave.c \
+ pdoctave_send.c \
+ pdoctave_command.c \
+ pdoctave_get.c
+
+TARGET = ./pdoctave.pd_linux
+
+#TARGET2 = ./pdoctave_send.pd_linux
+
+
+OBJ = $(SRC:.c=.o)
+
+#
+# ------------------ targets ------------------------------------
+#
+
+install: all
+ sudo cp pdoctave.pd_linux /usr/local/lib/pd/externs/
+
+clean:
+ rm -f $(OBJ) read_shared_mem.oct write_shared_mem.o write_shared_mem.oct read_shared_mem.o
+
+all: pdoctave
+#all: pdoctave pdoctave_send
+
+pdoctave: $(OBJ) read_shared_mem.oct write_shared_mem.oct
+
+ @echo :: $(OBJ)
+
+ ld $(LDFLAGS) -o $(TARGET) $(OBJ) $(LIB)
+ strip --strip-unneeded $(TARGET)
+ #rm *.o
+
+#pdoctave_send: $(OBJ2)
+#
+# @echo :: $(OBJ2)
+#
+# ld $(LDFLAGS) -o $(TARGET2) $(OBJ) $(LIB)
+# strip --strip-unneeded $(TARGET2)
+
+$(OBJ) : %.o : %.c
+ #touch $*.c
+ cc $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c
+
+read_shared_mem.oct: read_shared_mem.cc
+ mkoctfile read_shared_mem.cc -c -o read_shared_mem.o
+ mkoctfile read_shared_mem.o pdoctave_dataframe.o -o read_shared_mem.oct
+
+write_shared_mem.oct: write_shared_mem.cc
+ mkoctfile write_shared_mem.cc -c -o write_shared_mem.o
+ mkoctfile write_shared_mem.o pdoctave_dataframe.o -o write_shared_mem.oct
+
+pdoctave_send.o: pdoctave_send.c
+
+pdoctave_command.o: pdoctave_command.c
+
+pdoctave_get.o: pdoctave_get.c