diff options
Diffstat (limited to 'swig')
-rw-r--r-- | swig/Makefile.am | 8 | ||||
-rw-r--r-- | swig/chicken/Makefile.am | 15 | ||||
-rw-r--r-- | swig/chicken/lilv.setup | 2 | ||||
-rw-r--r-- | swig/chicken/lv2_list.scm | 13 | ||||
-rw-r--r-- | swig/mzscheme/Makefile.am | 10 | ||||
-rw-r--r-- | swig/python/Makefile.am | 12 |
6 files changed, 0 insertions, 60 deletions
diff --git a/swig/Makefile.am b/swig/Makefile.am deleted file mode 100644 index 790bf31..0000000 --- a/swig/Makefile.am +++ /dev/null @@ -1,8 +0,0 @@ -EXTRA_DIST = lilv.i - -if WITH_SWIG - -SUBDIRS = python mzscheme chicken - -endif # WITH_SWIG - diff --git a/swig/chicken/Makefile.am b/swig/chicken/Makefile.am deleted file mode 100644 index da3645d..0000000 --- a/swig/chicken/Makefile.am +++ /dev/null @@ -1,15 +0,0 @@ -EXTRA_DIST = lilv.setup lv2_list.scm - -if WITH_CHICKEN -all: - rm -f lilv.scm lilv_wrap.c - swig -DCHICKEN -Wall -chicken -proxy -nounit -I../.. -o lilv_wrap.c -oh lilv_wrap.h ../lilv.i - tar -czf lilv.egg lilv.setup lilv.scm lilv_wrap.c - -#install-exec-local: -# chicken-setup ./lilv.egg - -clean-local: - rm -f *.[ch] *.so *.o lilv.egg lilv.scm -endif - diff --git a/swig/chicken/lilv.setup b/swig/chicken/lilv.setup deleted file mode 100644 index bac6aa3..0000000 --- a/swig/chicken/lilv.setup +++ /dev/null @@ -1,2 +0,0 @@ -(run (csc -s -o lilv.so lilv.scm lilv_wrap.c -llilv)) -(install-extension 'lilv '("lilv.so")) diff --git a/swig/chicken/lv2_list.scm b/swig/chicken/lv2_list.scm deleted file mode 100644 index 3978a12..0000000 --- a/swig/chicken/lv2_list.scm +++ /dev/null @@ -1,13 +0,0 @@ -; Least idiomatic scheme bindings ever. Work in progress... - -(require-extension lilv) - -(define world (lilv-world-new)) -(lilv-world-load-all world) - -(define plugins (lilv-world-get-all-plugins world)) - -(let ((p (lilv-plugins-get-at plugins 0))) - (display (lilv-value-as-string (lilv-plugin-get-uri p))) - (newline)) - diff --git a/swig/mzscheme/Makefile.am b/swig/mzscheme/Makefile.am deleted file mode 100644 index 42740b2..0000000 --- a/swig/mzscheme/Makefile.am +++ /dev/null @@ -1,10 +0,0 @@ -if WITH_MZSCHEME -all: - swig -DMZSCHEME -Wall -mzscheme -I../.. -o lilv_mzscheme.c -oh lilv_mzscheme.h ../lilv.i - gcc -fPIC -shared -Iplt -I../.. \ - -I/usr/include/plt lilv_mzscheme.c -o liblilv_mzscheme.so - -clean-local: - rm -f *.[ch] *.so *.o -endif - diff --git a/swig/python/Makefile.am b/swig/python/Makefile.am deleted file mode 100644 index 3054524..0000000 --- a/swig/python/Makefile.am +++ /dev/null @@ -1,12 +0,0 @@ -EXTRA_DIST = lv2_list.py - -if WITH_PYTHON -all: - swig -DPYTHON -Wall -python -I../.. -o lilv_python.c -oh lilv_python.h ../lilv.i - gcc -fPIC -shared -I../.. $(PYTHON_CPPFLAGS) $(PYTHON_EXTRA_LDFLAGS) \ - $(PYTHON_EXTRA_LIBS) $(PYTHON_EXTRA_LDFLAGS) \ - lilv_python.c ../../src/.libs/liblilv.so -o _lilv.so - -clean-local: - rm -f *.[ch] *.so *.o lilv.py -endif |