Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/common/Util/Clooper/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'common/Util/Clooper/Makefile')
-rw-r--r--common/Util/Clooper/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/common/Util/Clooper/Makefile b/common/Util/Clooper/Makefile
new file mode 100644
index 0000000..6ea2e2c
--- /dev/null
+++ b/common/Util/Clooper/Makefile
@@ -0,0 +1,21 @@
+CC=gcc
+
+CXXFLAGS+= -Wall -Werror -fPIC -O2 -finline
+LDFLAGS+= -lasound
+
+LDFLAGS+= -L/usr/local/lib -lcsound
+
+CPPFLAGS+=-I/home/james/cvs/sugar-jhbuild/build/include/python2.5
+LDFLAGS+=-L/home/james/cvs/sugar-jhbuild/build/lib
+
+CPPFLAGS+=-I/usr/include/python2.5
+LDFLAGS+=-lpython2.5
+
+all : aclient.so
+
+aclient.so : aclient.cpp audio.cpp
+ g++ $(CPPFLAGS) $(CXXFLAGS) -shared -o $@ $< $(LDFLAGS)
+
+clean :
+ rm aclient.so
+