1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 07:39:42 +02:00

Add simple Makefile to lv2.

This commit is contained in:
benjamin.drung@gmail.com 2013-11-01 22:03:03 +00:00
parent a508a99138
commit 6a2b20360c
3 changed files with 16 additions and 9 deletions

View File

@ -100,7 +100,7 @@ libsndfile.a: libsndfile-recursive
# lv2
lv2-recursive:
cd lv2 && bash build && cd ..
$(MAKE) -C lv2
liblv2.a: lv2-recursive
ln -sf lv2/liblv2.a liblv2.a
@ -151,7 +151,7 @@ clean:
test ! -f libvorbis/Makefile || $(MAKE) -C libvorbis clean
test ! -f lib-widget-extra/Makefile || $(MAKE) -C lib-widget-extra clean
test ! -f libflac/Makefile || $(MAKE) -C libflac clean
cd lv2 && bash clean && cd ..
test ! -f lv2/Makefile || $(MAKE) -C lv2 clean
test ! -f portaudio-v19/Makefile || $(MAKE) -C portaudio-v19 clean
test ! -f portmixer/Makefile || $(MAKE) -C portmixer clean
test ! -f sbsms/Makefile || $(MAKE) -C sbsms clean
@ -175,7 +175,7 @@ distclean:
test ! -f libvorbis/Makefile || $(MAKE) -C libvorbis distclean
test ! -f lib-widget-extra/Makefile || $(MAKE) -C lib-widget-extra distclean
test ! -f libflac/Makefile || $(MAKE) -C libflac distclean
cd lv2 && bash clean && cd ..
test ! -f lv2/Makefile || $(MAKE) -C lv2 distclean
test ! -f portaudio-v19/Makefile || $(MAKE) -C portaudio-v19 distclean
test ! -f portmixer/Makefile || $(MAKE) -C portmixer distclean
test ! -f sbsms/Makefile || $(MAKE) -C sbsms distclean

13
lib-src/lv2/Makefile Normal file
View File

@ -0,0 +1,13 @@
all:
./build
clean:
rm -rf {
rm -rf include lv2/build serd/build sord/build sratom/build lilv/build
rm -f liblv2.a
distclean: clean
rm -rf lv2/.waf-* serd/.waf-* sord/.waf-* sratom/.waf-* lilv/.waf-*
rm -rf lv2/.lock-* serd/.lock-* sord/.lock-* sratom/.lock-* lilv/.lock-*
.PHONY: all clean distclean

View File

@ -1,6 +0,0 @@
#!/bin/bash
rm -rf {lv2,serd,sord,sratom,lilv}/{build,.waf*,.lock*}
rm -rf {liblv2.a,include}
exit 0