diff options
author | David Robillard <d@drobilla.net> | 2008-07-30 21:16:51 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-07-30 21:16:51 +0000 |
commit | 2cd12ad217c63068c0e33cd70e80ee6344af3216 (patch) | |
tree | 03ce118eec13f707e888219f5b078ed896445f5f /swig/Makefile.am | |
parent | 69557918d1492853483be5aa904652edf094384f (diff) | |
download | lilv-2cd12ad217c63068c0e33cd70e80ee6344af3216.tar.gz lilv-2cd12ad217c63068c0e33cd70e80ee6344af3216.tar.bz2 lilv-2cd12ad217c63068c0e33cd70e80ee6344af3216.zip |
Move stuff for various binding languages to own directories.
git-svn-id: http://svn.drobilla.net/lad/slv2@1315 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'swig/Makefile.am')
-rw-r--r-- | swig/Makefile.am | 36 |
1 files changed, 2 insertions, 34 deletions
diff --git a/swig/Makefile.am b/swig/Makefile.am index 3555c3a..8a6f8ae 100644 --- a/swig/Makefile.am +++ b/swig/Makefile.am @@ -1,40 +1,8 @@ -EXTRA_DIST = slv2.i lv2_list.py slv2.setup +EXTRA_DIST = slv2.i if WITH_SWIG -all: python mzscheme chicken - -if WITH_PYTHON -python: - swig -DPYTHON -Wall -python -I.. -o slv2_python.c -oh slv2_python.h slv2.i - gcc -fPIC -shared -I.. $(PYTHON_CPPFLAGS) $(PYTHON_EXTRA_LDFLAGS) \ - $(PYTHON_EXTRA_LIBS) $(PYTHON_EXTRA_LDFLAGS) \ - slv2_python.c ../src/.libs/libslv2.so -o _slv2.so -else -python: - -endif # WITH_PYTHON - -if WITH_MZSCHEME -mzscheme: - swig -DMZSCHEME -Wall -mzscheme -I.. -o slv2_mzscheme.c -oh slv2_mzscheme.h slv2.i - gcc -fPIC -shared -Iplt -I.. \ - -I/usr/include/plt slv2_mzscheme.c -o libslv2_mzscheme.so -endif # WITH_MZSCHEME - -if WITH_CHICKEN -chicken: - rm -f slv2.scm slv2_wrap.c - rm -rf eggs - mkdir -p eggs - swig -DCHICKEN -Wall -chicken -proxy -nounit -I.. -o slv2_wrap.c -oh slv2_wrap.h slv2.i - tar -czf eggs/slv2.egg slv2.setup slv2.scm slv2_wrap.c -endif # WITH_CHICKEN +SUBDIRS = python mzscheme chicken endif # WITH_SWIG -clean-local: - rm -f *.cxx - rm -f *.so - rm -f *.o - rm -f slv2.py |