source: trunk/debathena/third/schroot/Makefile.am @ 24167

Revision 24167, 1.4 KB checked in by broder, 15 years ago (diff)
Import schroot upstream into subversion.
Line 
1# schroot Makefile template
2#
3#
4# Copyright © 2004-2009  Roger Leigh <rleigh@debian.org>
5#
6# schroot is free software: you can redistribute it and/or modify it
7# under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
11# schroot is distributed in the hope that it will be useful, but
12# WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14# General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program.  If not, see
18# <http://www.gnu.org/licenses/>.
19#
20#####################################################################
21
22ACLOCAL_AMFLAGS=-I m4
23
24include $(top_srcdir)/scripts/global.mk
25
26SUBDIRS = sbuild bin test etc man doc po
27
28dist-hook:
29# Remove junk from the generated tarball.
30        $(FIND) $(distdir) -name '.*' -print | $(XARGS) xargs $(RM) -rf
31        $(FIND) $(distdir) -name '#*' -print | $(XARGS) $(RM) -rf
32        $(FIND) $(distdir) -name '*~' -print | $(XARGS) $(RM) -rf
33
34# Generate ChangeLog
35        if [ -d .git ]; then                    \
36          git log > $(distdir)/ChangeLog;       \
37        fi
38
39EXTRA_DIST =                            \
40        bootstrap                       \
41        debian                          \
42        scripts/schroot_release.m4.in   \
43        m4                              \
44        HACKING
45
46ps:
47        $(MAKE) -C doc schroot.ps
48
49pdf:
50        $(MAKE) -C doc schroot.pdf
51
52.PHONY: ps pdf
Note: See TracBrowser for help on using the repository browser.