Browse Source

Add doxygen build system.

tags/v1.0.0
Andrew Belt 5 years ago
parent
commit
5d33f6ea1f
3 changed files with 2548 additions and 0 deletions
  1. +1
    -0
      docs/.gitignore
  2. +2536
    -0
      docs/Doxyfile
  3. +11
    -0
      docs/Makefile

+ 1
- 0
docs/.gitignore View File

@@ -0,0 +1 @@
/html

+ 2536
- 0
docs/Doxyfile
File diff suppressed because it is too large
View File


+ 11
- 0
docs/Makefile View File

@@ -0,0 +1,11 @@

all: doxygen

doxygen:
doxygen Doxyfile

upload: doxygen
rsync html/ vcvrack.com:vcvrack.com/docs/ -ruvz --delete

clean:
rm -rf html

Loading…
Cancel
Save