Changeset 1209 for trunk/doc/Makefile.am
- Timestamp:
- Mar 6, 2008, 1:32:35 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/Makefile.am
r1109 r1209 25 25 # 02111-1307, USA. 26 26 27 doc: doxygen.config doxygen-local 27 if HAVE_DOXYGEN 28 28 29 dvi-local: 29 doc: doxygen.config FORCE 30 @doxygen doxygen.config 30 31 31 pdf-local: 32 # these are supported by automake and *-local will add target to * 33 dvi-local: latex-local 32 34 33 html-local: doxygen.config doxygen-local 35 ps-local: latex-local 36 37 pdf-local: latex-local 38 39 html-local: doxygen_html.config FORCE 40 @doxygen doxygen_html.config; 41 42 # this is not supported by automake - there is no target latex 43 latex-local: doxygen_latex.config FORCE 44 @doxygen doxygen_latex.config 45 46 47 doxygen.config: doxygen.config.in 48 $(SED) -e 's/PROJECT_NUMBER.*= /&$(VERSION)/g' doxygen.config.in > doxygen.config 49 50 doxygen_html.config: doxygen.config 51 $(SED) -e 's/GENERATE_LATEX.*= /&no/g' doxygen.config > doxygen_html.config 52 53 doxygen_latex.config: doxygen.config 54 $(SED) -e 's/GENERATE_HTML.*= /&no/g' doxygen.config > doxygen_latex.config 55 56 endif 34 57 35 58 mostlyclean-local: … … 37 60 38 61 clean-local: 39 rm -rf doxygen .config html latex Statistics.pdf62 rm -rf doxygen*.config html latex 40 63 41 doxygen-local: 42 @if $(HAVE_DOXYGEN); then \ 43 doxygen doxygen.config; \ 44 fi 45 46 doxygen.config: doxygen.config.in 47 $(SED) -e 's/PROJECT_NUMBER.*= /&$(VERSION)/g' doxygen.config.in > doxygen.config 48 49 64 FORCE:
Note: See TracChangeset
for help on using the changeset viewer.