Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Util/Clooper/Makefile
blob: a83f9d24b58fd1f51fcbd26ccfae97571839cbde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CC=gcc

CFLAGS+=-g -Wall -Werror  -fPIC #-O3 -finline

PYTHON=/usr/include/python2.4

all : sclient.so aclient.so

sclient.so : SoundClient.cpp
	g++ $(CFLAGS) -shared -o $@ $< -lpython2.4 -lcsound

aclient.so : aclient.cpp
	g++ $(CFLAGS) -shared -o $@ $< -lpython2.4 -lcsound -lasound

clean :
	rm sclient.so