Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/levelloader/doc/documentation.am @ 4098

Last change on this file since 4098 was 3605, checked in by bensch, 20 years ago

orxonox/trunk: merged trunk back to levelloader
merged with command:
svn merge -r 3499:HEAD trunk branches/levelloader

Conflicts in
C track_manager.h
C world_entities/player.cc
C world_entities/player.h
C world_entities/environment.h
C lib/coord/p_node.cc
C defs/debug.h
C track_manager.cc
C story_entities/campaign.h

solved in merge-favouring. It was quite easy because Chris only worked on the headers, and he didi it quite clean. Thats the spirit :)

Conflits in world.cc are a MESS: fix it

File size: 1.7 KB
RevLine 
[3167]1DX_CONFIG_FILE = "$(top_srcdir)/orxodox"
2DX_CONF_DIR = "$(top_srcdir)/doc/doxyconf"
3
4doc:
5        if test ! -e $(DX_CONFIG_FILE); then \
6         make doc-config; \
7        fi
[3218]8        @echo "Generating doxygen Documentation"; \
[3219]9        $(DOXYGEN) $(DX_CONFIG_FILE)
[3167]10
11doc-config:
12        @echo "Generationg doxygen configuration File." ; \
13        if test -e  "$(top_srcdir)/orxodox"; then \
14          echo "deleting existing Configuration File" ; \
15          rm $(top_srcdir)/orxodox ; \
16        fi ; \
17        touch $(DX_CONFIG_FILE) ; \
18        $(DX_CONF_DIR)/project                                          >> $(DX_CONFIG_FILE); \
19        echo "PROJECT_NAME              = \"$(PACKAGE_NAME)\""          >> $(DX_CONFIG_FILE); \
20        echo "PROJECT_NUMBER            = \"$(PACKAGE_VERSION)\""       >> $(DX_CONFIG_FILE); \
21        echo "OUTPUT_DIRECTORY          = \"$(top_srcdir)/doc/\""       >> $(DX_CONFIG_FILE); \
22        echo " " >> $(DX_CONFIG_FILE); \
23\
24        $(DX_CONF_DIR)/build                                            >> $(DX_CONFIG_FILE); \
25\
26        $(DX_CONF_DIR)/progress                                         >> $(DX_CONFIG_FILE); \
[3205]27        if test $(DEBUG) -ge 2 ; then \
[3173]28         echo "QUIET                    = \"NO\""                       >> $(DX_CONFIG_FILE); \
29        else \
30         echo "QUIET                    = \"YES\""                      >> $(DX_CONFIG_FILE); \
31        fi ;\
[3167]32\
33        $(DX_CONF_DIR)/input                                            >> $(DX_CONFIG_FILE); \
34        echo "INPUT                     = $(DOXYGEN_INPUT)"             >> $(DX_CONFIG_FILE); \
35\
36        $(DX_CONF_DIR)/preprocessor                                     >> $(DX_CONFIG_FILE); \
37        echo "INCLUDE_PATH              = \"$(top_srcdir)\""            >> $(DX_CONFIG_FILE); \
38        echo "PREDEFINED                = \"HAVE_CONFIG_H= \""          >> $(DX_CONFIG_FILE); \
39        \
40        $(DX_CONF_DIR)/confopts                                         >> $(DX_CONFIG_FILE)
41
[3173]42doc-delete:
[3218]43        @echo "Deleting doxygen Documentation"
44        rm -rf $(top_srcdir)/doc/html
[3173]45        rm -rf $(top_srcdir)/doc/latex
[3167]46
[3218]47distclean-local: doc-delete
48        rm -f $(top_srcdir)/orxodox
[3167]49
[3218]50clean-local:  doc-delete
[3167]51
[3605]52if DOCUMENTATION
[3218]53all-local: doc
[3605]54else
55all-local:
56endif
[3218]57
[3173]58.PHONY: doc doc-config doc-delete
[3167]59
60# Local Variables:
61# mode: makefile
62# End:
Note: See TracBrowser for help on using the repository browser.