14 lines
205 B
Makefile
14 lines
205 B
Makefile
all: gen
|
|
|
|
clean:
|
|
rm -rf doxygen_sqlite3.db html
|
|
|
|
gen:
|
|
doxygen
|
|
|
|
commit: gen
|
|
touch html/.nojekyll
|
|
./commit-gh.sh documentation/html/ html/.nojekyll html/*.* html/search/*.*
|
|
|
|
.PHONY: all clean gen commit
|