add doxygen stuff
This commit is contained in:
parent
ccce00377c
commit
6416f0fbfe
6
.gitignore
vendored
6
.gitignore
vendored
@ -11,10 +11,12 @@
|
||||
*.log
|
||||
*.pdf
|
||||
|
||||
# autofoo
|
||||
Makefile
|
||||
Makefile.in
|
||||
|
||||
/.deps/
|
||||
/.libs/
|
||||
/Makefile
|
||||
/Makefile.in
|
||||
/aclocal.m4
|
||||
/autom4te.cache/
|
||||
/autoscan-*.log
|
||||
|
@ -1,5 +1,5 @@
|
||||
## Makefile.am -- Process this file with automake to produce Makefile.in
|
||||
# how to build a so library?
|
||||
SUBDIRS = doc
|
||||
|
||||
lib_LTLIBRARIES = \
|
||||
libbrandt.la
|
||||
|
@ -29,6 +29,8 @@ AC_TYPE_UINT16_T
|
||||
CC=$(echo "${CC}" | sed 's/-std=gnu99/-std=c99/')
|
||||
CPP=$(echo "${CC}" | sed 's/-std=gnu99/-std=c99/')
|
||||
|
||||
AC_CONFIG_FILES([Makefile])
|
||||
|
||||
AC_CONFIG_FILES([
|
||||
Makefile
|
||||
doc/Makefile
|
||||
])
|
||||
AC_OUTPUT
|
||||
|
14
doc/Makefile.am
Normal file
14
doc/Makefile.am
Normal file
@ -0,0 +1,14 @@
|
||||
all:
|
||||
@echo -e \
|
||||
"Generate documentation:\n" \
|
||||
"\tmake full - full documentation with dependency graphs (slow)\n" \
|
||||
"\tmake fast - fast mode without dependency graphs"
|
||||
|
||||
full: brandt.doxy
|
||||
doxygen $<
|
||||
|
||||
fast: brandt.doxy
|
||||
sed 's/\(HAVE_DOT.*=\).*/\1 NO/' $< | doxygen -
|
||||
|
||||
clean:
|
||||
rm -rf html
|
2386
doc/brandt.doxy
Normal file
2386
doc/brandt.doxy
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user