]>
Commit | Line | Data |
---|---|---|
603f1cfd | 1 | # Customize Makefile.maint for Bison. -*- makefile -*- |
02650b7f | 2 | # Copyright (C) 2003, 2005, 2006 Free Software Foundation, Inc. |
603f1cfd | 3 | |
f16b0819 | 4 | # This program is free software: you can redistribute it and/or modify |
603f1cfd | 5 | # it under the terms of the GNU General Public License as published by |
f16b0819 PE |
6 | # the Free Software Foundation, either version 3 of the License, or |
7 | # (at your option) any later version. | |
8 | # | |
603f1cfd AD |
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. | |
f16b0819 | 13 | # |
603f1cfd | 14 | # You should have received a copy of the GNU General Public License |
f16b0819 | 15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
603f1cfd | 16 | |
067b32ee AD |
17 | build_aux_dir = $(srcdir)/build-aux |
18 | prev_version_file = $(build_aux_dir)/prev-version.txt | |
19 | announce_gen = $(build_aux_dir)/announce-gen | |
603f1cfd AD |
20 | release_archive_dir = releases |
21 | ||
22 | # Use alpha.gnu.org for alpha and beta releases. | |
23 | # Use ftp.gnu.org for major releases. | |
24 | gnu_ftp_host-alpha = alpha | |
25 | gnu_ftp_host-beta = alpha | |
26 | gnu_ftp_host-major = ftp | |
27 | gnu_rel_host = $(gnu_ftp_host-$(RELEASE_TYPE)) | |
28 | ||
29 | url_dir_list = \ | |
30 | ftp://$(gnu_rel_host).gnu.org/gnu/bison | |
31 | ||
32 | # Files to update automatically. | |
33 | wget_files = \ | |
067b32ee AD |
34 | $(build_aux_dir)/config.guess \ |
35 | $(build_aux_dir)/config.sub \ | |
36 | $(build_aux_dir)/texinfo.tex \ | |
603f1cfd AD |
37 | |
38 | cvs_files = \ | |
067b32ee AD |
39 | $(build_aux_dir)/install-sh \ |
40 | $(build_aux_dir)/mdate-sh \ | |
41 | $(build_aux_dir)/missing \ | |
42 | $(build_aux_dir)/mkinstalldirs | |
603f1cfd AD |
43 | |
44 | # Tests not to run. | |
02650b7f PE |
45 | local-checks-to-skip = \ |
46 | changelog-check |