17 lines
267 B
Makefile
Executable file
17 lines
267 B
Makefile
Executable file
|
|
|
|
|
|
htmlfiles = documentation.html download.html hardware.html \
|
|
index.html links.html mailinglist.html applications.html
|
|
|
|
all: $(htmlfiles)
|
|
|
|
%.html: %.xml comedi.xsl
|
|
xsltproc $< -o $@
|
|
|
|
push:
|
|
rsync -a --files-from=files . \
|
|
www.comedi.org:/srv/comedi.org/www
|
|
|
|
|
|
|