2007-12-18 05:09:02 +01:00
|
|
|
|
2008-06-28 00:37:49 +02:00
|
|
|
SRCS=$(wildcard *.mu)
|
2007-12-18 05:09:02 +01:00
|
|
|
OBJS=$(SRCS:.mu=.html)
|
|
|
|
|
|
|
|
%.html: %.mu
|
2008-07-16 06:38:48 +02:00
|
|
|
@ echo Mupping $<...
|
|
|
|
@ mup.wrapper html $<
|
2007-12-18 05:09:02 +01:00
|
|
|
|
|
|
|
.PHONY: all clean
|
|
|
|
|
|
|
|
all: $(OBJS)
|
|
|
|
|
2008-07-16 06:38:48 +02:00
|
|
|
upload: all
|
|
|
|
@ ln -sf OVERVIEW.html index.html
|
|
|
|
@ rsync -L mup.css MANUAL.html index.html *.png ssh.tuxfamily.org:/home/non/non-sequencer.tuxfamily.org-web/htdocs
|
|
|
|
@ rm -f index.html
|
|
|
|
|
2012-03-14 14:10:50 +01:00
|
|
|
install:
|
|
|
|
@ install -d "$(DESTDIR)$(DOCUMENT_PATH)/non-sequencer"
|
|
|
|
@ install -m 644 $(OBJS) *.png mup.css ../../COPYING "$(DESTDIR)$(DOCUMENT_PATH)/non-sequencer"
|
|
|
|
|
2007-12-18 05:09:02 +01:00
|
|
|
clean:
|
|
|
|
rm -f $(OBJS)
|