1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
# Makefile.am: help build documentation files
# $Id: Makefile.am,v 1.13 2004/02/14 16:56:55 baueran Exp $
#
# Copyright (c) 2000 - 2003 Andreas Bauer <baueran@in.tum.de>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
EXTRA_DIST = FAQ rcfile.example1 rcfile.example2 rcfile.example1.it rcfile.example1.pl rcfile.example2.pl rcfile.example2.ru supported_servers
@MAINT@doxygen: Doxyfile
@MAINT@ doxygen Doxyfile
dist-hook:
if test -d $(srcdir)/api; then \
mkdir $(distdir)/api ;\
fi
if test -d $(srcdir)/api/html; then \
mkdir $(distdir)/api/html ;\
cp $(srcdir)/api/html/* $(distdir)/api/html ;\
fi
if test -d $(srcdir)/api/latex; then \
mkdir $(distdir)/api/latex ;\
cp $(srcdir)/api/latex/* $(distdir)/api/latex ;\
fi
if test -d $(srcdir)/api/man; then \
mkdir $(distdir)/api/man ;\
cp -r $(srcdir)/api/man/* $(distdir)/api/man ;\
fi
if test -d $(srcdir)/api/rtf; then \
mkdir $(distdir)/api/rtf ;\
cp $(srcdir)/api/rtf/* $(distdir)/api/rtf ;\
fi
|