Assists music production by grouping standalone programs into sessions. Community version of "Non Session Manager".
				
			 
			
		 
		
		
		
		
		
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | 
SRCS=$(wildcard *.mu)
OBJS=$(SRCS:.mu=.html)
%.html: %.mu
	@ echo Mupping $<...
	@ mup.wrapper html $<
.PHONY: all clean
all: $(OBJS)
upload: all
	@ ln -sf OVERVIEW.html index.html
	@ rsync -L mup.css MANUAL.html index.html *.png ssh.tuxfamily.org:/home/non/non-daw.tuxfamily.org-web/htdocs
	@ rm -f index.html
install:
	@ mkdir -p $(DOCUMENT_PATH)
	@ cp $(OBJS) *.png mup.css ../COPYING $(DOCUMENT_PATH)
	@ ln -sf $(PIXMAP_PATH)/logo.png $(DOCUMENT_PATH)
clean:
	rm -f $(OBJS)
 |