summaryrefslogtreecommitdiff
path: root/chugins/Makefile
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2012-08-30 17:17:38 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2012-08-30 17:17:38 +0200
commit3c19adc8a7d67305631d560ac69a8e6f74f052f8 (patch)
tree3bf7d48107feeaa885425980942667f482e6e639 /chugins/Makefile
parentfd7a7851ef99dedf5116dc5dff772445eb670218 (diff)
downloaddigitale-debutanten-3c19adc8a7d67305631d560ac69a8e6f74f052f8.tar.gz
replace Chubgraph Clipper with Chugin Clipper, giving a significant speed increase
* Chubgraph Clipper now available as ClipperGraph * Chugins are built in chugins/ and do not need to be installed * additional command line options to ./start_chuck are passed to chuck
Diffstat (limited to 'chugins/Makefile')
-rw-r--r--chugins/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/chugins/Makefile b/chugins/Makefile
new file mode 100644
index 0000000..f75e667
--- /dev/null
+++ b/chugins/Makefile
@@ -0,0 +1,15 @@
+CFLAGS ?= -O3
+
+CFLAGS += -m32
+CPPFLAGS += -I/usr/include/chuck -D__LINUX_JACK__
+LDFLAGS += -m32
+
+CXXFLAGS += $(CFLAGS)
+
+all : Clipper.chug
+
+%.chug : %.o
+ $(CXX) -shared $(LDFLAGS) -o $@ $^
+
+clean:
+ $(RM) *.chug *.o