doc/Makefile.am
author deba
Wed, 01 Mar 2006 10:25:30 +0000
changeset 1991 d7442141d9ef
parent 1671 3c82a0d9e0e7
child 2015 5e51c9eb5e83
permissions -rw-r--r--
The graph adadptors can be alteration observed.
In most cases it uses the adapted graph alteration notifiers.
Only special case is now the UndirGraphAdaptor, where
we have to proxy the signals from the graph.

The SubBidirGraphAdaptor is removed, because it doest not
gives more feature than the EdgeSubGraphAdaptor<UndirGraphAdaptor<Graph>>.

The ResGraphAdaptor is based on this composition.
ladanyi@1671
     1
htmldir = $(datadir)/doc/$(PACKAGE)/html
ladanyi@542
     2
ladanyi@1545
     3
EXTRA_DIST = \
ladanyi@1545
     4
	html \
ladanyi@1545
     5
	icons/geom/ftv2doc.png \
ladanyi@1545
     6
	icons/geom/ftv2folderclosed.png \
ladanyi@1545
     7
	icons/geom/ftv2folderopen.png \
ladanyi@1545
     8
	coding_style.dox \
ladanyi@1545
     9
	developers_interface.dox \
ladanyi@1545
    10
	dirs.dox \
ladanyi@1545
    11
	getstart.dox \
ladanyi@1545
    12
	graph-adaptors.dox \
ladanyi@1545
    13
	graph_io.dox \
ladanyi@1545
    14
	graphs.dox \
ladanyi@1545
    15
	groups.dox \
ladanyi@1545
    16
	license.dox \
ladanyi@1545
    17
	mainpage.dox \
ladanyi@1545
    18
	maps.dox \
ladanyi@1545
    19
	named-param.dox \
ladanyi@1545
    20
	namespaces.dox \
ladanyi@1545
    21
	quicktour.dox \
klao@1909
    22
	ugraphs.dox
alpar@1177
    23
ladanyi@1310
    24
html/index.html:
klao@1450
    25
	if test ${doxygen_found} = yes; then \
klao@1450
    26
	  doxygen Doxyfile; \
klao@1451
    27
	  cp $(srcdir)/icons/geom/ftv2* html; \
klao@1450
    28
	fi
ladanyi@542
    29
ladanyi@542
    30
html: html/index.html
ladanyi@542
    31
ladanyi@542
    32
clean-local:
ladanyi@542
    33
	-rm -rf html
ladanyi@542
    34
ladanyi@542
    35
install-data-local: html/index.html
ladanyi@542
    36
	@$(NORMAL_INSTALL)
ladanyi@542
    37
	$(mkinstalldirs) $(DESTDIR)$(htmldir)
alpar@1400
    38
	@dir='$(<D)'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \
ladanyi@542
    39
	  f="`echo $$p | sed -e 's|^.*/||'`"; \
ladanyi@542
    40
	  echo " $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f"; \
ladanyi@542
    41
	  $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f; \
ladanyi@542
    42
	done
ladanyi@542
    43
ladanyi@542
    44
uninstall-local: html/index.html
ladanyi@542
    45
	@$(NORMAL_UNINSTALL)
alpar@1400
    46
	@dir='$(<D)'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \
ladanyi@542
    47
	  f="`echo $$p | sed -e 's|^.*/||'`"; \
ladanyi@542
    48
	  echo " rm -f $(DESTDIR)$(htmldir)/$$f"; \
ladanyi@542
    49
	  rm -f $(DESTDIR)$(htmldir)/$$f; \
ladanyi@542
    50
	done