source: trunk/essentials/sys-devel/automake-1.9/m4/Makefile.am

Last change on this file was 3086, checked in by bird, 18 years ago

automake 1.9.6

File size: 2.0 KB
Line 
1## Process this file with automake to create Makefile.in
2
3## Makefile for Automake m4.
4
5## Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004
6## Free Software Foundation, Inc.
7
8## This program is free software; you can redistribute it and/or modify
9## it under the terms of the GNU General Public License as published by
10## the Free Software Foundation; either version 2, or (at your option)
11## any later version.
12
13## This program is distributed in the hope that it will be useful,
14## but WITHOUT ANY WARRANTY; without even the implied warranty of
15## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16## GNU General Public License for more details.
17
18## You should have received a copy of the GNU General Public License
19## along with this program; if not, write to the Free Software
20## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21## 02110-1301, USA.
22
23m4datadir = $(datadir)/aclocal-$(APIVERSION)
24
25dist_m4data_DATA = \
26$(top_srcdir)/m4/amversion.m4 \
27as.m4 \
28auxdir.m4 \
29ccstdc.m4 \
30cond.m4 \
31depend.m4 \
32depout.m4 \
33dmalloc.m4 \
34gcj.m4 \
35header.m4 \
36init.m4 \
37install-sh.m4 \
38lead-dot.m4 \
39lex.m4 \
40lispdir.m4 \
41maintainer.m4 \
42make.m4 \
43minuso.m4 \
44missing.m4 \
45mkdirp.m4 \
46multi.m4 \
47obsol-gt.m4 \
48obsol-lt.m4 \
49obsolete.m4 \
50options.m4 \
51protos.m4 \
52python.m4 \
53regex.m4 \
54runlog.m4 \
55sanity.m4 \
56strip.m4 \
57tar.m4
58
59EXTRA_DIST = dirlist amversion.in
60
61# We build amversion.m4 here, instead of from config.status,
62# because config.status is rerun each time one of configure's
63# dependencies change and amversion.m4 happens to be a configure
64# dependency. configure and amversion.m4 would be rebuilt in
65# loop otherwise.
66# Use `$(top_srcdir)/m4' for the benefit of non-GNU makes: this is
67# how amversion.m4 appears in our dependencies.
68$(top_srcdir)/m4/amversion.m4: $(srcdir)/amversion.in
69 sed -e 's,[@]VERSION[@],$(VERSION),g' \
70 -e 's,[@]APIVERSION[@],$(APIVERSION),g' \
71 -e "s,[@]configure_input[@],Generated from amversion.in; do not edit by hand.,g" \
72 $(srcdir)/amversion.in > $@t
73 chmod a-w $@t
74 mv -f $@t $@
Note: See TracBrowser for help on using the repository browser.