Mercurial > hg > sv-dependency-builds
annotate src/flac-1.2.1/doc/Makefile.am @ 169:223a55898ab9 tip default
Add null config files
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Mon, 02 Mar 2020 14:03:47 +0000 |
parents | 98c1576536ae |
children |
rev | line source |
---|---|
cannam@86 | 1 # flac - Command-line FLAC encoder/decoder |
cannam@86 | 2 # Copyright (C) 2002,2003,2004,2005,2006,2007 Josh Coalson |
cannam@86 | 3 # |
cannam@86 | 4 # This program is free software; you can redistribute it and/or |
cannam@86 | 5 # modify it under the terms of the GNU General Public License |
cannam@86 | 6 # as published by the Free Software Foundation; either version 2 |
cannam@86 | 7 # of the License, or (at your option) any later version. |
cannam@86 | 8 # |
cannam@86 | 9 # This program is distributed in the hope that it will be useful, |
cannam@86 | 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
cannam@86 | 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
cannam@86 | 12 # GNU General Public License for more details. |
cannam@86 | 13 # |
cannam@86 | 14 # You should have received a copy of the GNU General Public License |
cannam@86 | 15 # along with this program; if not, write to the Free Software |
cannam@86 | 16 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
cannam@86 | 17 |
cannam@86 | 18 AUTOMAKE_OPTIONS = foreign |
cannam@86 | 19 |
cannam@86 | 20 SUBDIRS = . html |
cannam@86 | 21 |
cannam@86 | 22 if FLaC__HAS_DOXYGEN |
cannam@86 | 23 FLAC.tag: Doxyfile |
cannam@86 | 24 doxygen Doxyfile |
cannam@86 | 25 rm -rf html/api |
cannam@86 | 26 mv doxytmp/html html/api |
cannam@86 | 27 rm -rf doxytmp |
cannam@86 | 28 else |
cannam@86 | 29 FLAC.tag: |
cannam@86 | 30 echo "*** Warning: Doxygen not found; documentation will not be built." |
cannam@86 | 31 touch $@ |
cannam@86 | 32 mkdir -p html/api |
cannam@86 | 33 endif |
cannam@86 | 34 |
cannam@86 | 35 docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION) |
cannam@86 | 36 |
cannam@86 | 37 doc_DATA = \ |
cannam@86 | 38 FLAC.tag |
cannam@86 | 39 |
cannam@86 | 40 EXTRA_DIST = Doxyfile Makefile.lite doxygen.footer.html doxygen.header.html $(doc_DATA) |
cannam@86 | 41 |
cannam@86 | 42 maintainer-clean-local: |
cannam@86 | 43 rm -rf FLAC.tag html/api doxytmp |