2005-04-08 00:07:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
htmlfiles = documentation.html download.html hardware.html \
|
2005-04-08 02:49:29 +00:00
|
|
|
index.html links.html mailinglist.html applications.html
|
2005-04-08 00:07:20 +00:00
|
|
|
|
|
|
|
all: $(htmlfiles)
|
|
|
|
|
|
|
|
%.html: %.xml comedi.xsl
|
2008-01-30 16:40:39 +00:00
|
|
|
xsltproc --xinclude $< -o $@
|
2005-04-08 00:07:20 +00:00
|
|
|
|
|
|
|
push:
|
|
|
|
rsync -a --files-from=files . \
|
2012-05-11 11:02:58 +01:00
|
|
|
www.comedi.org:/srv/comedi.org/www
|
2005-04-08 00:07:20 +00:00
|
|
|
|
2008-01-30 16:40:39 +00:00
|
|
|
hardware.html: devices.xml
|
2005-04-08 00:07:20 +00:00
|
|
|
|
2008-01-30 16:40:39 +00:00
|
|
|
devices.xml:
|
|
|
|
perl make_device_table.pl < devices.txt > devices.xml
|
2005-04-08 00:07:20 +00:00
|
|
|
|
2012-04-16 15:31:56 +01:00
|
|
|
clean:
|
|
|
|
rm -f $(htmlfiles) devices.xml
|