1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-11 00:53:46 +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

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