Makefile.in
author Peter Kovacs <kpeter@inf.elte.hu>
Mon, 01 Mar 2010 02:30:00 +0100
changeset 58 10b6a5b7d4c0
parent 41 73fdafd843d9
child 59 5d9170b19285
permissions -rw-r--r--
Improve Algorithms section (it is still under construction)
     1 LIBSTDCXX_VERSION = @LIBSTDCXX_VERSION@
     2 
     3 EPS_IMAGES18 =
     4 
     5 EPS_IMAGES27 =
     6 
     7 EPS_IMAGES36 = \
     8 	adaptors1.eps \
     9 	adaptors2.eps \
    10 	splitnodes1.eps \
    11 	splitnodes2.eps
    12 
    13 EPS_IMAGES = \
    14 	$(EPS_IMAGES18) \
    15 	$(EPS_IMAGES27) \
    16 	$(EPS_IMAGES36)
    17 
    18 PNG_IMAGES = \
    19 	$(EPS_IMAGES:%.eps=gen-images/%.png)
    20 
    21 DEMOS = $(patsubst demo/%.cc,demo/build/%,$(wildcard demo/*.cc))
    22 
    23 GS_COMMAND=gs -dNOPAUSE -dBATCH -q -dEPSCrop -dTextAlphaBits=4 -dGraphicsAlphaBits=4
    24 
    25 all: demos html
    26 
    27 $(EPS_IMAGES18:%.eps=gen-images/%.png): gen-images/%.png: images/%.eps
    28 	-mkdir -p gen-images
    29 	$(GS_COMMAND) -sDEVICE=pngalpha -r18 -sOutputFile=$@ $<
    30 
    31 $(EPS_IMAGES27:%.eps=gen-images/%.png): gen-images/%.png: images/%.eps
    32 	-mkdir -p gen-images
    33 	$(GS_COMMAND) -sDEVICE=pngalpha -r27 -sOutputFile=$@ $<
    34 
    35 $(EPS_IMAGES36:%.eps=gen-images/%.png): gen-images/%.png: images/%.eps
    36 	-mkdir -p gen-images
    37 	$(GS_COMMAND) -sDEVICE=pngalpha -r36 -sOutputFile=$@ $<
    38 
    39 html: Doxyfile-gen $(PNG_IMAGES)
    40 	-mkdir -p gen-dox
    41 	./scripts/titlegen.py
    42 	doxygen Doxyfile
    43 
    44 demos: $(DEMOS)
    45 
    46 Doxyfile-gen:
    47 	sed -e 's/@version@/'`./scripts/chg-len.py`'/g' \
    48 	    -e 's/@lemon_doc_prefix@/@make_lemon_doc_prefix@/g' \
    49 	< Doxyfile.in >Doxyfile
    50 
    51 clean:
    52 	-rm -rf html
    53 	-rm -f doxygen.log
    54 	-rm -f $(PNG_IMAGES)
    55 	-rm -rf gen-images
    56 	-rm -rf $(DEMOS)
    57 
    58 update-external-tags:
    59 	wget -O libstdc++.tag.tmp http://gcc.gnu.org/onlinedocs/libstdc++/libstdc++-html-USERS-$(LIBSTDCXX_VERSION)/libstdc++.tag && \
    60 	mv libstdc++.tag.tmp libstdc++.tag || \
    61 	rm libstdc++.tag.tmp
    62 	wget -O lemon.tag.tmp @make_lemon_doc_prefix@/lemon.tag && \
    63 	mv lemon.tag.tmp lemon.tag || \
    64 	rm lemon.tag.tmp
    65 
    66 
    67 $(DEMOS): demo/build/%: demo/%.cc
    68 	-mkdir -p demo/build
    69 	g++ -o $@ @lemon_cflags@ $< @lemon_libs@ \
    70 	-Wall -W -Wall -W -Wunused -Wformat=2 -Wctor-dtor-privacy \
    71 	-Wnon-virtual-dtor -Wno-char-subscripts -Wwrite-strings \
    72 	-Wno-char-subscripts -Wreturn-type -Wcast-qual -Wcast-align \
    73 	-Wsign-promo -Woverloaded-virtual -ansi -fno-strict-aliasing \
    74 	-Wold-style-cast -Wno-unknown-pragmas \
    75 	-ggdb -O0
    76 
    77 
    78 .PHONY: update-external-tags html demos Doxyfile-gen
    79