fixes based on a pass over everything with autoconf/automake

This commit is contained in:
Josh Coalson
2002-08-23 06:45:23 +00:00
parent 3e94dad4f0
commit 1f99eac2bb
20 changed files with 172 additions and 57 deletions

View File

@@ -27,7 +27,7 @@ FLAC.tag: Doxyfile
docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)
doc_DATA = \
doc_DATA = \
FLAC.tag
EXTRA_DIST = Doxyfile Makefile.lite $(doc_DATA)

View File

@@ -35,3 +35,11 @@ doc_DATA = \
api
EXTRA_DIST = $(doc_DATA)
# The install targets don't copy whole directories so we have to
# handle 'api/' specially:
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(docdir)/api
(cd api && $(INSTALL_DATA) * $(DESTDIR)$(docdir)/api)
uninstall-local:
rm -rf $(DESTDIR)$(docdir)/api