Changeset 154:f4e4dbc1d467 in lemon-main for doc
- Timestamp:
- 04/28/08 12:12:33 (17 years ago)
- Branch:
- default
- Parents:
- 149:2f7ae34e1333 (diff), 153:976a014b3797 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/Makefile.am
r146 r154 9 9 doc/html 10 10 11 DOC_EPS_IMAGES18 = \ 12 nodeshape_0.eps \ 13 nodeshape_1.eps \ 14 nodeshape_2.eps \ 15 nodeshape_3.eps \ 16 nodeshape_4.eps 17 18 DOC_EPS_IMAGES = \ 19 $(DOC_EPS_IMAGES18) 20 21 DOC_PNG_IMAGES = \ 22 $(DOC_EPS_IMAGES:%.eps=doc/gen-images/%.png) 23 24 EXTRA_DIST += $(DOC_EPS_IMAGES:%=doc/images/%) 25 11 26 doc/html: 12 27 $(MAKE) $(AM_MAKEFLAGS) html 13 28 14 html-local: 29 GS_COMMAND=gs -dNOPAUSE -dBATCH -q -dEPSCrop -dTextAlphaBits=4 -dGraphicsAlphaBits=4 30 31 $(DOC_EPS_IMAGES18:%.eps=doc/gen-images/%.png): doc/gen-images/%.png: doc/images/%.eps 32 -mkdir doc/gen-images 33 if test ${gs_found} = yes; then \ 34 $(GS_COMMAND) -sDEVICE=pngalpha -r18 -sOutputFile=$@ $<; \ 35 else \ 36 echo; \ 37 echo "Ghostscript not found."; \ 38 echo; \ 39 exit 1; \ 40 fi 41 42 html-local: $(DOC_PNG_IMAGES) 15 43 if test ${doxygen_found} = yes; then \ 16 44 cd doc; \ … … 27 55 -rm -rf doc/html 28 56 -rm -f doc/doxygen.log 57 -rm -f $(DOC_PNG_IMAGES) 58 -rm -rf doc/gen-images 29 59 30 60 update-external-tags: -
doc/Makefile.am
r153 r154 1 1 EXTRA_DIST += \ 2 doc/Makefile \3 2 doc/Doxyfile.in \ 4 3 doc/coding_style.dox \
Note: See TracChangeset
for help on using the changeset viewer.