Support for Doxygen

This commit is contained in:
Rémi Denis-Courmont 2007-10-26 16:30:27 +00:00
parent 460fa6b707
commit a1251a8d89
3 changed files with 1308 additions and 1 deletions

1300
bindings/cil/Doxyfile.in Normal file

File diff suppressed because it is too large Load Diff

View File

@ -11,3 +11,8 @@ AUTOMAKE_OPTIONS = \
SUBDIRS = src tests
DIST_SUBDIRS = $(SUBDIRS) m4
doc: Doxyfile
$(DOXYGEN)
.PHONY: doc

View File

@ -31,8 +31,10 @@ AC_ARG_VAR([CSC], [C sharp compiler command])
AC_ARG_VAR([CSFLAGS], [C sharp compiler flags])
AC_PATH_PROG([CSC], [gmcs csc], [false])
AC_ARG_VAR([DOXYGEN], [Doxygen command])
AC_PATH_PROG([DOXYGEN], [doxygen], [false])
AM_INIT_AUTOMAKE
AC_CONFIG_FILES([Makefile m4/Makefile src/Makefile tests/Makefile])
AC_CONFIG_FILES([Makefile m4/Makefile src/Makefile tests/Makefile Doxyfile])
AC_OUTPUT