From 8087c22d97553eb90e45b9e9af1f211b1c521c5e Mon Sep 17 00:00:00 2001 From: Aleksey Lim Date: Sun, 15 Mar 2009 03:43:42 +0000 Subject: Binary blobs rock&roll --- (limited to 'common/Util/Clooper/Makefile') diff --git a/common/Util/Clooper/Makefile b/common/Util/Clooper/Makefile index c929fed..f82d475 100644 --- a/common/Util/Clooper/Makefile +++ b/common/Util/Clooper/Makefile @@ -1,15 +1,23 @@ CC=gcc +CSOUND_ARCH = $(shell arch | grep 64 >/dev/null && echo linux64 || echo linux32) +CSOUND_VERSION = $(shell csound --version 2>&1 | grep -o "Csound version [0-9]\+\.[0-9]\+" | awk '{print $$3}' | sed s/\\.//g) +LIB_NAME = $(CSOUND_ARCH)_$(CSOUND_VERSION) + CXXFLAGS = $(shell python-config --cflags) \ -Wall -Werror -fPIC -O2 -finline LDFLAGS+= $(python-config --libs) \ -lasound -lcsound all : aclient.so + rm -rf $(LIB_NAME) + mkdir $(LIB_NAME) + mv aclient.so $(LIB_NAME)/ + touch $(LIB_NAME)/__init__.py aclient.so : aclient.cpp audio.cpp g++ $(CXXFLAGS) -shared -o $@ $< $(LDFLAGS) clean : - rm aclient.so + rm aclient*.so -- cgit v0.9.1