non/sequencer/doc/Makefile

19 lines
344 B
Makefile
Raw Normal View History

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
2007-12-18 05:09:02 +01:00
clean:
rm -f $(OBJS)