- Timestamp:
- Dec 19, 2004, 4:31:17 PM (20 years ago)
- Location:
- orxonox/trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/Makefile.am
r3198 r3219 14 14 doc/doxyconf/project 15 15 16 ## 17 ## Doxygen stuff 18 ## 19 16 ## doxygen stuff 17 if DOXYGEN 20 18 DOXYGEN_INPUT = "src src/gui src/importer" 21 19 … … 29 27 30 28 include doc/documentation.am 29 endif -
orxonox/trunk/Makefile.in
r3218 r3219 92 92 DEFS = @DEFS@ 93 93 DEPDIR = @DEPDIR@ 94 DOXYGEN = @DOXYGEN@ 95 DOXYGEN_FALSE = @DOXYGEN_FALSE@ 96 DOXYGEN_TRUE = @DOXYGEN_TRUE@ 94 97 ECHO_C = @ECHO_C@ 95 98 ECHO_N = @ECHO_N@ … … 178 181 doc/doxyconf/project 179 182 180 DOXYGEN_INPUT = "src src/gui src/importer"181 DOXYGEN_EXCLUDE =182 DOXYGEN_EXAMPLE_PATH =183 DOXYGEN_SEARCHENGINE = YES184 DX_CONFIG_FILE = "$(top_srcdir)/orxodox"185 DX_CONF_DIR = "$(top_srcdir)/doc/doxyconf"183 @DOXYGEN_TRUE@DOXYGEN_INPUT = "src src/gui src/importer" 184 @DOXYGEN_TRUE@DOXYGEN_EXCLUDE = 185 @DOXYGEN_TRUE@DOXYGEN_EXAMPLE_PATH = 186 @DOXYGEN_TRUE@DOXYGEN_SEARCHENGINE = YES 187 @DOXYGEN_TRUE@DX_CONFIG_FILE = "$(top_srcdir)/orxodox" 188 @DOXYGEN_TRUE@DX_CONF_DIR = "$(top_srcdir)/doc/doxyconf" 186 189 all: config.h 187 190 $(MAKE) $(AM_MAKEFLAGS) all-recursive … … 597 600 598 601 599 doc:600 if test ! -e $(DX_CONFIG_FILE); then \601 make doc-config; \602 fi603 @echo "Generating doxygen Documentation"; \604 doxygen$(DX_CONFIG_FILE)605 606 doc-config:607 @echo "Generationg doxygen configuration File." ; \608 if test -e "$(top_srcdir)/orxodox"; then \609 echo "deleting existing Configuration File" ; \610 rm $(top_srcdir)/orxodox ; \611 fi ; \612 touch $(DX_CONFIG_FILE) ; \613 $(DX_CONF_DIR)/project >> $(DX_CONFIG_FILE); \614 echo "PROJECT_NAME = \"$(PACKAGE_NAME)\"" >> $(DX_CONFIG_FILE); \615 echo "PROJECT_NUMBER = \"$(PACKAGE_VERSION)\"" >> $(DX_CONFIG_FILE); \616 echo "OUTPUT_DIRECTORY = \"$(top_srcdir)/doc/\"" >> $(DX_CONFIG_FILE); \617 echo " " >> $(DX_CONFIG_FILE); \618 \619 $(DX_CONF_DIR)/build >> $(DX_CONFIG_FILE); \620 \621 $(DX_CONF_DIR)/progress >> $(DX_CONFIG_FILE); \622 if test $(DEBUG) -ge 2 ; then \623 echo "QUIET = \"NO\"" >> $(DX_CONFIG_FILE); \624 else \625 echo "QUIET = \"YES\"" >> $(DX_CONFIG_FILE); \626 fi ;\627 \628 $(DX_CONF_DIR)/input >> $(DX_CONFIG_FILE); \629 echo "INPUT = $(DOXYGEN_INPUT)" >> $(DX_CONFIG_FILE); \630 \631 $(DX_CONF_DIR)/preprocessor >> $(DX_CONFIG_FILE); \632 echo "INCLUDE_PATH = \"$(top_srcdir)\"" >> $(DX_CONFIG_FILE); \633 echo "PREDEFINED = \"HAVE_CONFIG_H= \"" >> $(DX_CONFIG_FILE); \634 \635 $(DX_CONF_DIR)/confopts >> $(DX_CONFIG_FILE)636 637 doc-delete:638 @echo "Deleting doxygen Documentation"639 rm -rf $(top_srcdir)/doc/html640 rm -rf $(top_srcdir)/doc/latex641 642 distclean-local: doc-delete643 rm -f $(top_srcdir)/orxodox644 645 clean-local: doc-delete646 647 all-local: doc648 649 .PHONY: doc doc-config doc-delete602 @DOXYGEN_TRUE@doc: 603 @DOXYGEN_TRUE@ if test ! -e $(DX_CONFIG_FILE); then \ 604 @DOXYGEN_TRUE@ make doc-config; \ 605 @DOXYGEN_TRUE@ fi 606 @DOXYGEN_TRUE@ @echo "Generating doxygen Documentation"; \ 607 @DOXYGEN_TRUE@ $(DOXYGEN) $(DX_CONFIG_FILE) 608 609 @DOXYGEN_TRUE@doc-config: 610 @DOXYGEN_TRUE@ @echo "Generationg doxygen configuration File." ; \ 611 @DOXYGEN_TRUE@ if test -e "$(top_srcdir)/orxodox"; then \ 612 @DOXYGEN_TRUE@ echo "deleting existing Configuration File" ; \ 613 @DOXYGEN_TRUE@ rm $(top_srcdir)/orxodox ; \ 614 @DOXYGEN_TRUE@ fi ; \ 615 @DOXYGEN_TRUE@ touch $(DX_CONFIG_FILE) ; \ 616 @DOXYGEN_TRUE@ $(DX_CONF_DIR)/project >> $(DX_CONFIG_FILE); \ 617 @DOXYGEN_TRUE@ echo "PROJECT_NAME = \"$(PACKAGE_NAME)\"" >> $(DX_CONFIG_FILE); \ 618 @DOXYGEN_TRUE@ echo "PROJECT_NUMBER = \"$(PACKAGE_VERSION)\"" >> $(DX_CONFIG_FILE); \ 619 @DOXYGEN_TRUE@ echo "OUTPUT_DIRECTORY = \"$(top_srcdir)/doc/\"" >> $(DX_CONFIG_FILE); \ 620 @DOXYGEN_TRUE@ echo " " >> $(DX_CONFIG_FILE); \ 621 @DOXYGEN_TRUE@\ 622 @DOXYGEN_TRUE@ $(DX_CONF_DIR)/build >> $(DX_CONFIG_FILE); \ 623 @DOXYGEN_TRUE@\ 624 @DOXYGEN_TRUE@ $(DX_CONF_DIR)/progress >> $(DX_CONFIG_FILE); \ 625 @DOXYGEN_TRUE@ if test $(DEBUG) -ge 2 ; then \ 626 @DOXYGEN_TRUE@ echo "QUIET = \"NO\"" >> $(DX_CONFIG_FILE); \ 627 @DOXYGEN_TRUE@ else \ 628 @DOXYGEN_TRUE@ echo "QUIET = \"YES\"" >> $(DX_CONFIG_FILE); \ 629 @DOXYGEN_TRUE@ fi ;\ 630 @DOXYGEN_TRUE@\ 631 @DOXYGEN_TRUE@ $(DX_CONF_DIR)/input >> $(DX_CONFIG_FILE); \ 632 @DOXYGEN_TRUE@ echo "INPUT = $(DOXYGEN_INPUT)" >> $(DX_CONFIG_FILE); \ 633 @DOXYGEN_TRUE@\ 634 @DOXYGEN_TRUE@ $(DX_CONF_DIR)/preprocessor >> $(DX_CONFIG_FILE); \ 635 @DOXYGEN_TRUE@ echo "INCLUDE_PATH = \"$(top_srcdir)\"" >> $(DX_CONFIG_FILE); \ 636 @DOXYGEN_TRUE@ echo "PREDEFINED = \"HAVE_CONFIG_H= \"" >> $(DX_CONFIG_FILE); \ 637 @DOXYGEN_TRUE@ \ 638 @DOXYGEN_TRUE@ $(DX_CONF_DIR)/confopts >> $(DX_CONFIG_FILE) 639 640 @DOXYGEN_TRUE@doc-delete: 641 @DOXYGEN_TRUE@ @echo "Deleting doxygen Documentation" 642 @DOXYGEN_TRUE@ rm -rf $(top_srcdir)/doc/html 643 @DOXYGEN_TRUE@ rm -rf $(top_srcdir)/doc/latex 644 645 @DOXYGEN_TRUE@distclean-local: doc-delete 646 @DOXYGEN_TRUE@ rm -f $(top_srcdir)/orxodox 647 648 @DOXYGEN_TRUE@clean-local: doc-delete 649 650 @DOXYGEN_TRUE@all-local: doc 651 652 @DOXYGEN_TRUE@.PHONY: doc doc-config doc-delete 650 653 651 654 # Local Variables: -
orxonox/trunk/configure
r3218 r3219 312 312 #endif" 313 313 314 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CC CFLAGS ac_ct_CC CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CPP EGREP DEBUG MSBITFIELDS GTK2_LIBS GTK2_CFLAGS HAVE_GTK2_TRUE HAVE_GTK2_FALSE LIBOBJS LTLIBOBJS'314 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CC CFLAGS ac_ct_CC CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CPP EGREP DEBUG DOXYGEN DOXYGEN_TRUE DOXYGEN_FALSE MSBITFIELDS GTK2_LIBS GTK2_CFLAGS HAVE_GTK2_TRUE HAVE_GTK2_FALSE LIBOBJS LTLIBOBJS' 315 315 ac_subst_files='' 316 316 … … 3868 3868 3869 3869 3870 3871 3870 ## GTK-disabled 3872 3871 echo "$as_me:$LINENO: checking if gtk should be enabled" >&5 … … 3902 3901 echo "no" 3903 3902 fi 3903 3904 3905 ## PROGRAMM CHECKING 3906 # checking for Doxygen 3907 # Extract the first word of "doxygen", so it can be a program name with args. 3908 set dummy doxygen; ac_word=$2 3909 echo "$as_me:$LINENO: checking for $ac_word" >&5 3910 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 3911 if test "${ac_cv_path_DOXYGEN+set}" = set; then 3912 echo $ECHO_N "(cached) $ECHO_C" >&6 3913 else 3914 case $DOXYGEN in 3915 [\\/]* | ?:[\\/]*) 3916 ac_cv_path_DOXYGEN="$DOXYGEN" # Let the user override the test with a path. 3917 ;; 3918 *) 3919 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 3920 for as_dir in $PATH 3921 do 3922 IFS=$as_save_IFS 3923 test -z "$as_dir" && as_dir=. 3924 for ac_exec_ext in '' $ac_executable_extensions; do 3925 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 3926 ac_cv_path_DOXYGEN="$as_dir/$ac_word$ac_exec_ext" 3927 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 3928 break 2 3929 fi 3930 done 3931 done 3932 3933 ;; 3934 esac 3935 fi 3936 DOXYGEN=$ac_cv_path_DOXYGEN 3937 3938 if test -n "$DOXYGEN"; then 3939 echo "$as_me:$LINENO: result: $DOXYGEN" >&5 3940 echo "${ECHO_T}$DOXYGEN" >&6 3941 else 3942 echo "$as_me:$LINENO: result: no" >&5 3943 echo "${ECHO_T}no" >&6 3944 fi 3945 3946 3947 3948 if test $DOXYGEN; then 3949 DOXYGEN_TRUE= 3950 DOXYGEN_FALSE='#' 3951 else 3952 DOXYGEN_TRUE='#' 3953 DOXYGEN_FALSE= 3954 fi 3955 3904 3956 3905 3957 ### CHECKING FOR SYSTEM ### … … 7606 7658 Usually this means the macro was only invoked conditionally." >&5 7607 7659 echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. 7660 Usually this means the macro was only invoked conditionally." >&2;} 7661 { (exit 1); exit 1; }; } 7662 fi 7663 if test -z "${DOXYGEN_TRUE}" && test -z "${DOXYGEN_FALSE}"; then 7664 { { echo "$as_me:$LINENO: error: conditional \"DOXYGEN\" was never defined. 7665 Usually this means the macro was only invoked conditionally." >&5 7666 echo "$as_me: error: conditional \"DOXYGEN\" was never defined. 7608 7667 Usually this means the macro was only invoked conditionally." >&2;} 7609 7668 { (exit 1); exit 1; }; } … … 8209 8268 s,@EGREP@,$EGREP,;t t 8210 8269 s,@DEBUG@,$DEBUG,;t t 8270 s,@DOXYGEN@,$DOXYGEN,;t t 8271 s,@DOXYGEN_TRUE@,$DOXYGEN_TRUE,;t t 8272 s,@DOXYGEN_FALSE@,$DOXYGEN_FALSE,;t t 8211 8273 s,@MSBITFIELDS@,$MSBITFIELDS,;t t 8212 8274 s,@GTK2_LIBS@,$GTK2_LIBS,;t t -
orxonox/trunk/configure.ac
r3218 r3219 43 43 44 44 AC_SUBST(DEBUG) 45 46 45 47 46 ## GTK-disabled … … 69 68 fi 70 69 70 71 ## PROGRAMM CHECKING 72 # checking for Doxygen 73 AC_PATH_PROG(DOXYGEN, doxygen) 74 AM_CONDITIONAL(DOXYGEN, test $DOXYGEN) 75 71 76 ### CHECKING FOR SYSTEM ### 72 77 -
orxonox/trunk/doc/documentation.am
r3218 r3219 7 7 fi 8 8 @echo "Generating doxygen Documentation"; \ 9 doxygen$(DX_CONFIG_FILE)9 $(DOXYGEN) $(DX_CONFIG_FILE) 10 10 11 11 doc-config: -
orxonox/trunk/src/Makefile.in
r3198 r3219 117 117 DEFS = @DEFS@ 118 118 DEPDIR = @DEPDIR@ 119 DOXYGEN = @DOXYGEN@ 120 DOXYGEN_FALSE = @DOXYGEN_FALSE@ 121 DOXYGEN_TRUE = @DOXYGEN_TRUE@ 119 122 ECHO_C = @ECHO_C@ 120 123 ECHO_N = @ECHO_N@ -
orxonox/trunk/src/console/Makefile.in
r3191 r3219 94 94 DEFS = @DEFS@ 95 95 DEPDIR = @DEPDIR@ 96 DOXYGEN = @DOXYGEN@ 97 DOXYGEN_FALSE = @DOXYGEN_FALSE@ 98 DOXYGEN_TRUE = @DOXYGEN_TRUE@ 96 99 ECHO_C = @ECHO_C@ 97 100 ECHO_N = @ECHO_N@ -
orxonox/trunk/src/gui/Makefile.in
r3191 r3219 101 101 DEFS = @DEFS@ 102 102 DEPDIR = @DEPDIR@ 103 DOXYGEN = @DOXYGEN@ 104 DOXYGEN_FALSE = @DOXYGEN_FALSE@ 105 DOXYGEN_TRUE = @DOXYGEN_TRUE@ 103 106 ECHO_C = @ECHO_C@ 104 107 ECHO_N = @ECHO_N@ -
orxonox/trunk/src/importer/Makefile.in
r3201 r3219 95 95 DEFS = @DEFS@ 96 96 DEPDIR = @DEPDIR@ 97 DOXYGEN = @DOXYGEN@ 98 DOXYGEN_FALSE = @DOXYGEN_FALSE@ 99 DOXYGEN_TRUE = @DOXYGEN_TRUE@ 97 100 ECHO_C = @ECHO_C@ 98 101 ECHO_N = @ECHO_N@
Note: See TracChangeset
for help on using the changeset viewer.