Browse Source

Support for Doxygen

pull/2/head
Rémi Denis-Courmont 19 years ago
parent
commit
a1251a8d89
  1. 1300
      bindings/cil/Doxyfile.in
  2. 5
      bindings/cil/Makefile.am
  3. 4
      bindings/cil/configure.ac

1300
bindings/cil/Doxyfile.in

File diff suppressed because it is too large

5
bindings/cil/Makefile.am

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

4
bindings/cil/configure.ac

@ -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

Loading…
Cancel
Save