Josh Coalson | 5e5fc01 | 2002-07-16 16:09:53 +0000 | [diff] [blame] | 1 | # flac - Command-line FLAC encoder/decoder |
Josh Coalson | 0395dac | 2006-04-25 06:59:33 +0000 | [diff] [blame] | 2 | # Copyright (C) 2002,2003,2004,2005,2006 Josh Coalson |
Josh Coalson | 5e5fc01 | 2002-07-16 16:09:53 +0000 | [diff] [blame] | 3 | # |
| 4 | # This program is free software; you can redistribute it and/or |
| 5 | # modify it under the terms of the GNU General Public License |
| 6 | # as published by the Free Software Foundation; either version 2 |
| 7 | # of the License, or (at your option) any later version. |
| 8 | # |
| 9 | # This program is distributed in the hope that it will be useful, |
| 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | # GNU General Public License for more details. |
| 13 | # |
| 14 | # You should have received a copy of the GNU General Public License |
| 15 | # along with this program; if not, write to the Free Software |
| 16 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 17 | |
| 18 | AUTOMAKE_OPTIONS = foreign |
| 19 | |
| 20 | SUBDIRS = . html |
| 21 | |
Josh Coalson | 52afda9 | 2003-01-10 04:38:44 +0000 | [diff] [blame] | 22 | if FLaC__HAS_DOXYGEN |
Josh Coalson | 5e5fc01 | 2002-07-16 16:09:53 +0000 | [diff] [blame] | 23 | FLAC.tag: Doxyfile |
| 24 | doxygen Doxyfile |
| 25 | rm -rf html/api |
| 26 | mv doxytmp/html html/api |
| 27 | rm -rf doxytmp |
Josh Coalson | 52afda9 | 2003-01-10 04:38:44 +0000 | [diff] [blame] | 28 | else |
| 29 | FLAC.tag: |
| 30 | echo "*** Warning: Doxygen not found; documentation will not be built." |
Josh Coalson | 50452ab | 2004-07-30 00:47:04 +0000 | [diff] [blame] | 31 | touch $@ |
Josh Coalson | 52afda9 | 2003-01-10 04:38:44 +0000 | [diff] [blame] | 32 | mkdir -p html/api |
| 33 | endif |
Josh Coalson | 5e5fc01 | 2002-07-16 16:09:53 +0000 | [diff] [blame] | 34 | |
| 35 | docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION) |
| 36 | |
Josh Coalson | 1f99eac | 2002-08-23 06:45:23 +0000 | [diff] [blame] | 37 | doc_DATA = \ |
Josh Coalson | 5e5fc01 | 2002-07-16 16:09:53 +0000 | [diff] [blame] | 38 | FLAC.tag |
| 39 | |
Josh Coalson | 89f0e87 | 2002-07-24 06:14:12 +0000 | [diff] [blame] | 40 | EXTRA_DIST = Doxyfile Makefile.lite $(doc_DATA) |
Josh Coalson | b39417b | 2002-09-24 06:41:29 +0000 | [diff] [blame] | 41 | |
Josh Coalson | 52afda9 | 2003-01-10 04:38:44 +0000 | [diff] [blame] | 42 | maintainer-clean-local: |
Josh Coalson | b39417b | 2002-09-24 06:41:29 +0000 | [diff] [blame] | 43 | rm -rf FLAC.tag html/api doxytmp |