aboutsummaryrefslogtreecommitdiff
path: root/itrax2/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'itrax2/makefile')
-rw-r--r--itrax2/makefile54
1 files changed, 54 insertions, 0 deletions
diff --git a/itrax2/makefile b/itrax2/makefile
new file mode 100644
index 0000000..516d908
--- /dev/null
+++ b/itrax2/makefile
@@ -0,0 +1,54 @@
+current: all
+
+PDSOURCE ?= ../../../pd/src
+IEMLIBSRC ?= ../../iemlib/iemlib1/src/
+INTERSENSESDK ?= /tmp/zmoelnig/isense/SDK/
+
+.SUFFIXES: .pd_linux
+VPATH = $(INTERSENSESDK)
+
+INCLUDE = -I. -I$(PDSOURCE) -I$(IEMLIBSRC) -I$(INTERSENSESDK)
+
+
+LDFLAGS = -export-dynamic -shared -L$(INTERSENSESDK)/Linux
+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 \
+ -DDL_OPEN
+
+SYSTEM = $(shell uname -m)
+
+# the sources
+
+SRC = isense.c \
+ itrax2.c
+
+TARGET = itrax2.pd_linux
+
+
+OBJ = $(SRC:.c=.o)
+
+#
+# ------------------ targets ------------------------------------
+#
+
+clean:
+ -rm $(TARGET)
+ -rm *.o
+
+all: $(TARGET)
+
+$(TARGET): $(OBJ)
+ @echo :: $(OBJ)
+ $(LD) $(LDFLAGS) -o $@ $< $(LIB)
+ strip --strip-unneeded $(TARGET)
+
+$(OBJ) : %.o : %.c
+ $(CC) $(CFLAGS) $(INCLUDE) -c -o $@ $<
+
+
+
+