1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 07:39:42 +02:00
audacity/lib-src/lv2/Makefile
Leland Lucius ccfd2f1c80 Update LV2 host
This greatly improves the LV2 host to the point where all
(non-midi) plugins distributed with Ubuntu 18.04 and Fedora
30 are supported.
2019-12-17 12:54:30 -06:00

27 lines
516 B
Makefile

#include srcdir.mk
all:
./configure --build
check:
clean:
./configure --clean
distclean: clean
find . -name __pycache__ \
-o -name \*.pyc \
-o -name .lock\* \
-o -name build | xargs rm -rf
EXTRA_DIST = $(shell find -type f)
distdir: $(EXTRA_DIST)
@for file in $^; do \
dir=$$(echo "/$$file" | sed -e 's,/[^/]*$$,,'); \
if test ! -d "$(distdir)$$dir"; then mkdir -p "$(distdir)$$dir"; fi; \
cp -p $$file "$(distdir)/$$file" || exit 1; \
done
.PHONY: all check clean distclean distdir