Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/common/Util/Clooper/Makefile
blob: 6ea2e2ccb3d6e5c16302525e755eaa6e70b99876 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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