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
- @ rsync -L mup.css MANUAL.html *.png ssh.tuxfamily.org:/home/non/non-sequencer.tuxfamily.org-web/htdocs
-
- install:
- @ install -d "$(DESTDIR)$(DOCUMENT_PATH)/non-sequencer"
- @ install -m 644 $(OBJS) *.png mup.css ../../COPYING "$(DESTDIR)$(DOCUMENT_PATH)/non-sequencer"
-
- clean:
- rm -f $(OBJS)
|