lisp/progmodes/python.el: Updated Copyright years.
[emacs.git] / admin / build-configs
blob59a3a1bbbcaaabb12993c95d16f1696c8c6b23ef
1 #! /usr/bin/perl
2 # Build Emacs in several different configurations.
4 # Copyright (C) 2001-2012 Free Software Foundation, Inc.
6 # This file is part of GNU Emacs.
8 # GNU Emacs 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 3 of the License, or
11 # (at your option) any later version.
13 # GNU Emacs 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.
18 # You should have received a copy of the GNU General Public License
19 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22 require 5;
23 use Getopt::Long;
24 use File::Basename;
25 use Cwd;
27 @configs =
29 ["--without-x", "--optim"],
30 ["--without-x-toolkit", "--optim"],
31 ["--without-toolkit-scroll-bars", "--optim"],
32 ["--with-x-toolkit=lucid", "--optim"],
33 ["--with-x-toolkit=motif", "--optim"],
34 ["--with-x-toolkit=motif", "--enable-checking"],
35 ["--with-x-toolkit=motif", "--gcc3"],
36 ["--with-x-toolkit=motif", ""],
39 $log = "/tmp/$$.out";
40 print "Using log file $log\n";
41 unlink $log;
43 $root = $ENV{"EMACS_ROOT"};
44 $root = "/gd/gnu/emacs" unless $root;
46 $rc = GetOptions ("help" => \$help);
47 if ($rc == 0 || $help)
49 print <<USAGE;
50 build-configs
52 Build Emacs in different configurations.
54 --help show this help
56 USAGE
57 exit 1;
60 # Chdir to the top-level directory of the tree. If not in a tree
61 # containing Emacs, use the default.
63 while (! -f "src/emacs.c" && cwd () ne "/")
65 chdir "..";
68 chdir $root if cwd () eq "/";
69 print "Build in ", cwd (), "\n";
71 foreach $config (@configs)
73 my $configure_options = @$config[0];
74 my $make_options = @$config[1];
75 my $rc;
77 print "$configure_options, $make_options\n";
78 unlink "config.cache";
80 $rc = system ("$root/configure $configure_options >>$log 2>&1");
81 if ($rc != 0)
83 print "configure failed\n";
84 exit 1;
87 $rc = system ("make-emacs --all $make_options >>$log 2>&1");
88 if ($rc != 0)
90 print "Make failed\n";
91 exit 1;
95 # Local Variables:
96 # mode: cperl
97 # End: