Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Util/Clooper/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Util/Clooper/Makefile')
-rw-r--r--Util/Clooper/Makefile14
1 files changed, 11 insertions, 3 deletions
diff --git a/Util/Clooper/Makefile b/Util/Clooper/Makefile
index 85c439b..3b585f2 100644
--- a/Util/Clooper/Makefile
+++ b/Util/Clooper/Makefile
@@ -1,12 +1,20 @@
CC=gcc
-CXXFLAGS+=-g -Wall -Werror -fPIC -I/home/james/cvs/sugar-jhbuild/build/include #-O3 -finline
-LDFLAGS+= -L/home/james/cvs/sugar-jhbuild/build/lib -L/usr/local/lib -lpython2.5 -lcsound -lasound
+CXXFLAGS+=-g -Wall -Werror -fPIC -O3 -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.4
+LDFlAGS+=-lpython2.4
all : aclient.so
aclient.so : aclient.cpp
- g++ $(CXXFLAGS) $(PYTHON) -shared -o $@ $< $(LDFLAGS)
+ g++ $(CPPFLAGS) $(CXXFLAGS) -shared -o $@ $< $(LDFLAGS)
clean :
rm aclient.so