Changeset 3167 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Dec 13, 2004, 2:56:34 PM (20 years ago)
- Location:
- orxonox/trunk
- Files:
-
- 8 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/Makefile.am
r3165 r3167 1 AUTOMAKE_OPTIONS = foreign no-installman no-installinfo 2 1 3 if HAVE_GTK2 2 4 GTK_PROGS =console … … 6 8 7 9 SUBDIRS = src importer gui $(GTK_PROGS) 10 11 12 13 ## 14 ## Doxygen stuff 15 ## 16 17 DOXYGEN_INPUT = src gui 18 19 ## Exclude the application wizard templates, and some file templates 20 DOXYGEN_EXCLUDE = 21 22 DOXYGEN_EXAMPLE_PATH = 23 24 ## Use Search engine (Versions 1.3.4 and above only!) 25 DOXYGEN_SEARCHENGINE = YES 26 27 include doc/documentation.am -
orxonox/trunk/Makefile.in
r3100 r3167 37 37 DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ 38 38 $(srcdir)/Makefile.in $(srcdir)/config.h.in \ 39 $( top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \40 config.guess config.sub depcomp install-sh missing\41 mkinstalldirs39 $(srcdir)/doc/documentation.am $(top_srcdir)/configure AUTHORS \ 40 COPYING ChangeLog INSTALL NEWS config.guess config.sub depcomp \ 41 install-sh missing mkinstalldirs 42 42 subdir = . 43 43 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 … … 164 164 target_os = @target_os@ 165 165 target_vendor = @target_vendor@ 166 AUTOMAKE_OPTIONS = foreign no-installman no-installinfo 166 167 @HAVE_GTK2_FALSE@GTK_PROGS = 167 @HAVE_GTK2_TRUE@GTK_PROGS = gui console 168 SUBDIRS = src importer $(GTK_PROGS) 168 @HAVE_GTK2_TRUE@GTK_PROGS = console 169 SUBDIRS = src importer gui $(GTK_PROGS) 170 DOXYGEN_INPUT = src gui 171 DOXYGEN_EXCLUDE = 172 DOXYGEN_EXAMPLE_PATH = 173 DOXYGEN_SEARCHENGINE = YES 174 DX_CONFIG_FILE = "$(top_srcdir)/orxodox" 175 DX_CONF_DIR = "$(top_srcdir)/doc/doxyconf" 169 176 all: config.h 170 177 $(MAKE) $(AM_MAKEFLAGS) all-recursive … … 173 180 am--refresh: 174 181 @: 175 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)182 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/doc/documentation.am $(am__configure_deps) 176 183 @for dep in $?; do \ 177 184 case '$(am__configure_deps)' in \ 178 185 *$$dep*) \ 179 echo ' cd $(srcdir) && $(AUTOMAKE) -- gnu'; \180 cd $(srcdir) && $(AUTOMAKE) -- gnu\186 echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \ 187 cd $(srcdir) && $(AUTOMAKE) --foreign \ 181 188 && exit 0; \ 182 189 exit 1;; \ 183 190 esac; \ 184 191 done; \ 185 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnuMakefile'; \192 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ 186 193 cd $(top_srcdir) && \ 187 $(AUTOMAKE) -- gnuMakefile194 $(AUTOMAKE) --foreign Makefile 188 195 .PRECIOUS: Makefile 189 196 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status … … 346 353 $(am__remove_distdir) 347 354 mkdir $(distdir) 355 $(mkdir_p) $(distdir)/doc 348 356 @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ 349 357 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ … … 558 566 ps-am: 559 567 560 uninstall-am: uninstall-info-am568 uninstall-am: 561 569 562 570 uninstall-info: uninstall-info-recursive … … 577 585 uninstall-info-am 578 586 587 588 doc: 589 @echo "Generating doxygen Documentation"; \ 590 if test ! -e $(DX_CONFIG_FILE); then \ 591 make doc-config; \ 592 fi 593 doxygen $(DX_CONFIG_FILE) 594 595 doc-config: 596 @echo "Generationg doxygen configuration File." ; \ 597 if test -e "$(top_srcdir)/orxodox"; then \ 598 echo "deleting existing Configuration File" ; \ 599 rm $(top_srcdir)/orxodox ; \ 600 fi ; \ 601 touch $(DX_CONFIG_FILE) ; \ 602 $(DX_CONF_DIR)/project >> $(DX_CONFIG_FILE); \ 603 echo "PROJECT_NAME = \"$(PACKAGE_NAME)\"" >> $(DX_CONFIG_FILE); \ 604 echo "PROJECT_NUMBER = \"$(PACKAGE_VERSION)\"" >> $(DX_CONFIG_FILE); \ 605 echo "OUTPUT_DIRECTORY = \"$(top_srcdir)/doc/\"" >> $(DX_CONFIG_FILE); \ 606 echo " " >> $(DX_CONFIG_FILE); \ 607 \ 608 $(DX_CONF_DIR)/build >> $(DX_CONFIG_FILE); \ 609 \ 610 $(DX_CONF_DIR)/progress >> $(DX_CONFIG_FILE); \ 611 \ 612 $(DX_CONF_DIR)/input >> $(DX_CONFIG_FILE); \ 613 echo "INPUT = $(DOXYGEN_INPUT)" >> $(DX_CONFIG_FILE); \ 614 \ 615 $(DX_CONF_DIR)/preprocessor >> $(DX_CONFIG_FILE); \ 616 echo "INCLUDE_PATH = \"$(top_srcdir)\"" >> $(DX_CONFIG_FILE); \ 617 echo "PREDEFINED = \"HAVE_CONFIG_H= \"" >> $(DX_CONFIG_FILE); \ 618 \ 619 $(DX_CONF_DIR)/confopts >> $(DX_CONFIG_FILE) 620 621 .PHONY: doc doc-config 622 623 # Local Variables: 624 # mode: makefile 625 # End: 579 626 # Tell versions [3.59,3.63) of GNU make to not export all variables. 580 627 # Otherwise a system limit (for SysV at least) may be exceeded. -
orxonox/trunk/gui/Makefile.in
r3144 r3167 216 216 esac; \ 217 217 done; \ 218 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnugui/Makefile'; \218 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign gui/Makefile'; \ 219 219 cd $(top_srcdir) && \ 220 $(AUTOMAKE) -- gnugui/Makefile220 $(AUTOMAKE) --foreign gui/Makefile 221 221 .PRECIOUS: Makefile 222 222 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/gui/orxonox_gui.cc
r3166 r3167 66 66 #ifdef HAVE_GTK2 67 67 initGTK(argc, argv); 68 #endif 68 #endif /* HAVE_GTK2 */ 69 69 orxonoxGUI = new Window( "Grafical OrxOnoX loader, "PACKAGE_VERSION); 70 70 #ifdef HAVE_GTK2 … … 126 126 127 127 } 128
Note: See TracChangeset
for help on using the changeset viewer.