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.

21 lines
442B

  1. SRCS=$(wildcard *.mu)
  2. OBJS=$(SRCS:.mu=.html)
  3. %.html: %.mu
  4. @ echo Mupping $<...
  5. @ mup.wrapper html $<
  6. .PHONY: all clean
  7. all: $(OBJS)
  8. upload: all
  9. @ rsync -L mup.css MANUAL.html *.png ssh.tuxfamily.org:/home/non/non-sequencer.tuxfamily.org-web/htdocs
  10. install:
  11. @ install -d "$(DESTDIR)$(DOCUMENT_PATH)/non-sequencer"
  12. @ install -m 644 $(OBJS) *.png mup.css ../../COPYING "$(DESTDIR)$(DOCUMENT_PATH)/non-sequencer"
  13. clean:
  14. rm -f $(OBJS)