mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-04 13:06:38 +00:00
12 lines
323 B
Makefile
12 lines
323 B
Makefile
|
# This target requires and graphviz and doxygen
|
||
|
dox:
|
||
|
doxygen Doxyfile
|
||
|
|
||
|
|
||
|
pdf:
|
||
|
gmake -C latex refman.pdf
|
||
|
|
||
|
upload: dox pdf
|
||
|
scp -C latex/refman.pdf adamdunkels@shell.sourceforge.net:/home/groups/c/co/contiki/htdocs/
|
||
|
tar czfv - html | ssh adamdunkels@shell.sourceforge.net "cd /home/groups/c/co/contiki/htdocs/; tar xfz -"
|