daily_automated

This commit is contained in:
topicchi
2023-03-17 11:59:21 +00:00
parent 252ecca9cf
commit e2f276193e
4496 changed files with 1178007 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
html: doxygen
examples.txt: ../examples/*/*.ino
./generate-examples.pl > examples.txt
doxygen: examples.txt
@doxygen Doxyfile
@echo ""
@echo "Done, error log follows:"
@echo ""
@cat doxygen.log
clean:
rm -rf html
rm -f doxygen.log
rm -f examples.txt
upload: doxygen
rsync -avz -e ssh html/ njh@www.aelius.com:~/public_html/ethercard/
.PHONY: doxygen clean upload