1 | # Customize Makefile.maint for Autoconf. -*- Makefile -*-
|
---|
2 | # Copyright (C) 2003, 2004, 2006 Free Software Foundation, Inc.
|
---|
3 |
|
---|
4 | # This program is free software; you can redistribute it and/or modify
|
---|
5 | # it under the terms of the GNU General Public License as published by
|
---|
6 | # the Free Software Foundation; either version 2, or (at your option)
|
---|
7 | # 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., 51 Franklin Street, Fifth Floor, Boston, MA
|
---|
17 | # 02110-1301, USA.
|
---|
18 |
|
---|
19 | prev_version_file = $(srcdir)/config/prev-version.txt
|
---|
20 | announce_gen = $(srcdir)/config/announce-gen
|
---|
21 | release_archive_dir = releases
|
---|
22 |
|
---|
23 | # Use alpha.gnu.org for alpha and beta releases.
|
---|
24 | # Use ftp.gnu.org for major releases.
|
---|
25 | gnu_ftp_host-alpha = alpha
|
---|
26 | gnu_ftp_host-beta = alpha
|
---|
27 | gnu_ftp_host-major = ftp
|
---|
28 | gnu_rel_host = $(gnu_ftp_host-$(RELEASE_TYPE))
|
---|
29 |
|
---|
30 | url_dir_list = \
|
---|
31 | ftp://$(gnu_rel_host).gnu.org/gnu/autoconf
|
---|
32 |
|
---|
33 | # Files to update automatically.
|
---|
34 | cvs_executable_files = \
|
---|
35 | $(srcdir)/build-aux/config.guess \
|
---|
36 | $(srcdir)/build-aux/config.sub \
|
---|
37 | $(srcdir)/build-aux/elisp-comp \
|
---|
38 | $(srcdir)/build-aux/install-sh \
|
---|
39 | $(srcdir)/build-aux/mdate-sh \
|
---|
40 | $(srcdir)/build-aux/missing \
|
---|
41 |
|
---|
42 | cvs_files = $(cvs_executable_files) \
|
---|
43 | $(srcdir)/build-aux/texinfo.tex \
|
---|
44 | $(srcdir)/doc/fdl.texi \
|
---|
45 | $(srcdir)/doc/make-stds.texi \
|
---|
46 | $(srcdir)/doc/standards.texi
|
---|
47 |
|
---|
48 | # Keep executables executable. Make it robust to parallel makes.
|
---|
49 | local_updates = executable-update
|
---|
50 |
|
---|
51 | .PHONY: executable-update
|
---|
52 | # autom4te-update is defined in Makefile.am.
|
---|
53 | executable-update: wget-update cvs-update autom4te-update
|
---|
54 | chmod a+x $(cvs_executable_files)
|
---|
55 |
|
---|
56 | # Tests not to run.
|
---|
57 | local-checks-to-skip ?= \
|
---|
58 | sc_unmarked_diagnostics
|
---|