mirror of
				https://github.com/cookiengineer/audacity
				synced 2025-11-04 08:04:06 +01:00 
			
		
		
		
	This greatly improves the LV2 host to the point where all (non-midi) plugins distributed with Ubuntu 18.04 and Fedora 30 are supported.
		
			
				
	
	
		
			27 lines
		
	
	
		
			516 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			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
 |