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

CXXFLAGS = $(shell python-config --cflags) \
		   -Wall -Werror -fPIC -O2 -finline 
LDFLAGS+=  $(python-config --libs) \
		   -lasound -lcsound

all : aclient.so

aclient.so : aclient.cpp audio.cpp
	g++ $(CXXFLAGS) -shared -o $@ $< $(LDFLAGS)

clean :
	rm aclient.so