Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Util/Clooper/Makefile
diff options
context:
space:
mode:
authorJames <olpc@localhost.localdomain>2007-01-21 11:55:11 (GMT)
committer James <olpc@localhost.localdomain>2007-01-21 11:55:11 (GMT)
commit2fcb4c0d3d2a42dd89a6aab92838dda675230de1 (patch)
tree99670e7de9b0e90c96ba7226ef69ca703b1b24fe /Util/Clooper/Makefile
parente2eab95f6e89691198c61ea01e10a041099ba782 (diff)
steps toward Clooper
Diffstat (limited to 'Util/Clooper/Makefile')
-rw-r--r--Util/Clooper/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Util/Clooper/Makefile b/Util/Clooper/Makefile
index 22e78c9..91badbb 100644
--- a/Util/Clooper/Makefile
+++ b/Util/Clooper/Makefile
@@ -4,7 +4,7 @@ CFLAGS+=-g -Wall -Werror --std=c99 -fPIC
PYTHON=/usr/include/python2.4
-all : _ttest.so
+all : _ttest.so cmd_csound
%.o: %.c %.h
$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
@@ -21,5 +21,8 @@ ttest_wrap.c: ttest.i
ttest_wrap.o: ttest_wrap.c
gcc -fPIC -I$(PYTHON) -o $@ -c $<
+cmd_csound: cmd_csound.cpp
+ g++ -o $@ $^ -lcsound
+
_ttest.so : ttest_wrap.o ttest.o
gcc -shared -o $@ $^