Doxygen setup

FossilOrigin-Name: d633b4312306277e88e39ae1797e9bb26d76f90ed757f6ca917401644f940445
This commit is contained in:
me@ow.nekobit.net 2022-05-03 03:02:11 +00:00
parent 5fd13fa47a
commit cf00b3c003
3 changed files with 2625 additions and 0 deletions

2
.gitignore vendored
View file

@ -1,3 +1,5 @@
**/*.o
**/*.a
docs/html/
docs/latex/

2618
Doxyfile Normal file

File diff suppressed because it is too large Load diff

View file

@ -7,6 +7,9 @@ AR = ar
all: static
docs:
doxygen Doxyfile
static: $(OBJ)
$(AR) rcs $(TARGET) $(OBJ)
@ -16,3 +19,5 @@ static: $(OBJ)
clean:
rm -f $(TARGET)
rm -f $(OBJ)
.PHONY: clean docs all test