2 # Copyright (C) 2003-2012 Free Software Foundation, Inc.
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)
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.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 # Same as 'lisp4.sh', but using the now-recommended way to install
18 # non-bytecompiled *.el files.
23 cat > Makefile.am
<< 'EOF'
24 lisp_DATA
= am-one.el am-two.el am-three.el
25 EXTRA_DIST
= am-one.el am-two.el
27 echo "(provide 'am-three)" > $@
28 CLEANFILES
= am-three.el
33 test ! -f am-three.elc
37 test -f "$(lispdir)/am-one.el"
38 test -f "$(lispdir)/am-two.el"
39 test -f "$(lispdir)/am-three.el"
40 test ! -f "$(lispdir)/am-one.elc"
41 test ! -f "$(lispdir)/am-two.elc"
42 test ! -f "$(lispdir)/am-three.elc"
45 find "$(lispdir)" |
grep '\.el$$' && exit 1; :
46 find "$(lispdir)" |
grep '\.elc$$' && exit 1; :
49 cat >> configure.ac
<< 'EOF'
54 echo "(require 'am-two)" > am-one.el
55 echo "(require 'am-three) (provide 'am-two)" > am-two.el
56 # am-tree.el is a built source
60 $AUTOMAKE --add-missing
62 cwd
=$
(pwd) || fatal_
"getting current working directory"
64 .
/configure
--prefix "$cwd"
71 # Fake the absence of emacs.
72 # *.el files SHOULD be installed by "make install" (and uninstalled
73 # by "make uninstall").
74 .
/configure EMACS
=no
--prefix "$cwd"