1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-10 16:43:33 +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