build: use default htmldir directory.

Signed-off-by: Diego Elio Pettenò <flameeyes@flameeyes.eu>
This commit is contained in:
Diego Elio Pettenò 2012-06-29 13:01:26 -07:00 committed by Harald Welte
parent 7e007e0f87
commit 200710e3eb
1 changed files with 4 additions and 7 deletions

View File

@ -17,12 +17,9 @@ EXTRA_DIST = git-version-gen
if HAVE_DOXYGEN if HAVE_DOXYGEN
pkgdocdir=$(docdir)/$(PACKAGE)-$(VERSION) html_DATA = $(top_builddir)/doc/html.tar
doc_htmldir=$(pkgdocdir)/html
doc_html_DATA = $(top_builddir)/doc/html.tar $(html_DATA): $(top_builddir)/doc/core/html/index.html \
$(doc_html_DATA): $(top_builddir)/doc/core/html/index.html \
$(top_builddir)/doc/gsm/html/index.html \ $(top_builddir)/doc/gsm/html/index.html \
$(top_builddir)/doc/vty/html/index.html \ $(top_builddir)/doc/vty/html/index.html \
$(top_builddir)/doc/codec/html/index.html $(top_builddir)/doc/codec/html/index.html
@ -49,10 +46,10 @@ $(top_builddir)/doc/codec/html/index.html: $(SOURCES) Doxyfile.codec
$(DOXYGEN) Doxyfile.codec $(DOXYGEN) Doxyfile.codec
install-data-hook: install-data-hook:
cd $(DESTDIR)$(doc_htmldir) && tar xf html.tar && rm -f html.tar cd $(DESTDIR)$(htmldir) && tar xf html.tar && rm -f html.tar
uninstall-hook: uninstall-hook:
cd $(DESTDIR)$(doc_htmldir) && rm -rf {core,gsm,vty,codec} cd $(DESTDIR)$(htmldir) && rm -rf {core,gsm,vty,codec}
DX_CLEAN = doc/{core,gsm,vty,codec}/{html,latex}/* doc/html.tar DX_CLEAN = doc/{core,gsm,vty,codec}/{html,latex}/* doc/html.tar
endif endif