0194c1bd1d78c5a9c46fda8693d8458294af0997
[platform/upstream/automake.git] / lib / am / lisp.am
1 ## automake - create Makefile.in from Makefile.am
2 ## Copyright (C) 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
3 ## 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
4
5 ## This program is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 2, or (at your option)
8 ## any later version.
9
10 ## This program is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ## GNU General Public License for more details.
14
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 if %?INSTALL%
19 include inst-vars.am
20 endif %?INSTALL%
21
22 ## ---------- ##
23 ## Building.  ##
24 ## ---------- ##
25
26 elc-stamp: $(LISP)
27         @echo 'WARNING: Warnings can be ignored. :-)'
28         @rm -f elc-temp && touch elc-temp
29         if test "$(EMACS)" != no; then \
30 ## Make sure "$@" isn't empty initially.
31           set x; \
32 ## Populate "$@" with elisp files (found in the current directory
33 ## or in $srcdir).
34           list='$(LISP)'; for p in $$list; do \
35             if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
36             set x "$$@" "$$d$$p"; shift; \
37           done; \
38 ## Finally call elisp-comp for all files.
39           shift; \
40           EMACS="$(EMACS)" $(SHELL) $(elisp_comp) "$$@" || exit 1; \
41         else : ; fi
42         @mv -f elc-temp $@
43
44 ## Do not use $(ELCFILES) as target, because it may have been emptied
45 ## by the user (to disable byte-compilation), and POSIX does not allow
46 ## an empty target.
47 $(am__ELCFILES): elc-stamp
48 ## Recover from the removal of $@.
49 ##
50 ## Do not call `make elc-stamp' if emacs is not available, because it would
51 ## be useless.
52 ##
53 ## If `make -n' is called, do not execute any command in the recipe that
54 ## changes the tree; however, invoke the recursive make for debuggability.
55         @if $(am__make_dryrun); then dry=:; else dry=; fi; \
56         if test "$(EMACS)" != no && test ! -f $@; then \
57 ## If `make -j' is used and more than one file has been erased, several
58 ## processes can execute this block.  We have to make sure that only
59 ## the first one will run `$(MAKE) $(AM_MAKEFLAGS) elc-stamp', and the
60 ## other ones will wait.
61 ##
62 ## There is a race here if only one child of make receive a signal.
63 ## In that case the build may fail.  We remove elc-stamp when we receive
64 ## a signal so we are sure the build will succeed the next time.
65           $$dry trap 'rm -rf elc-lock elc-stamp' 1 2 13 15; \
66           if $$dry mkdir elc-lock 2>/dev/null; then \
67 ## This code is being executed by the first process.
68             $$dry rm -f elc-stamp; \
69             $(MAKE) $(AM_MAKEFLAGS) elc-stamp; \
70             $$dry rmdir elc-lock; \
71           else \
72 ## This code is being executed by the follower processes.
73 ## Wait until the first process is done.
74             while test -d elc-lock && test -z "$$dry"; do sleep 1; done; \
75 ## Succeed if and only if the first process succeeded.
76             $$dry test -f elc-stamp; exit $$?; \
77           fi; \
78         else : ; fi
79
80
81 ## ------------ ##
82 ## Installing.  ##
83 ## ------------ ##
84
85 if %?INSTALL%
86 am__installdirs += "$(DESTDIR)$(%NDIR%dir)"
87 %DIR%LISP_INSTALL = %BASE?$(INSTALL_DATA):$(install_sh_DATA)%
88 .PHONY install-%EXEC?exec:data%-am: install-%DIR%LISP
89 install-%DIR%LISP: $(%DIR%_LISP) $(ELCFILES)
90         @$(NORMAL_INSTALL)
91 ## Do not install anything if EMACS was not found.
92         @if test "$(EMACS)" != no && test -n "$(%NDIR%dir)"; then \
93           $(MKDIR_P) "$(DESTDIR)$(%NDIR%dir)"; \
94 ?!BASE?   $(am__vpath_adj_setup) \
95 ## Funny invocation because Makefile variable can be empty, leading to
96 ## a syntax error in sh.
97           list='$(%DIR%_LISP)'; for p in $$list; do \
98 ## A lisp file can be in the source directory or the build directory.
99             if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
100             %BASE?$(am__strip_dir):$(am__vpath_adj)% \
101             echo " $(%DIR%LISP_INSTALL) '$$d$$p' '$(DESTDIR)$(%NDIR%dir)/$$f'"; \
102             $(%DIR%LISP_INSTALL) "$$d$$p" "$(DESTDIR)$(%NDIR%dir)/$$f" || exit $$?; \
103 ## Only install .elc file if it exists.
104             if test -f $${p}c; then \
105               echo " $(%DIR%LISP_INSTALL) '$${p}c' '$(DESTDIR)$(%NDIR%dir)/$${f}c'"; \
106               $(%DIR%LISP_INSTALL) "$${p}c" "$(DESTDIR)$(%NDIR%dir)/$${f}c" || exit $$?; \
107             else : ; fi; \
108           done; \
109         else : ; fi
110 endif %?INSTALL%
111
112
113 ## -------------- ##
114 ## Uninstalling.  ##
115 ## -------------- ##
116
117 if %?INSTALL%
118 .PHONY uninstall-am: uninstall-%DIR%LISP
119 uninstall-%DIR%LISP:
120         @$(NORMAL_UNINSTALL)
121 ## Do not uninstall anything if EMACS was not found.
122         @test "$(EMACS)" != no && test -n "$(%NDIR%dir)" || exit 0; \
123         list='$(%DIR%_LISP)'; \
124 ?BASE?  files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
125 ?!BASE? $(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
126         files="$$files "`echo "$$files" | sed 's|$$|c|'`; \
127         dir='$(DESTDIR)$(%NDIR%dir)'; $(am__uninstall_files_from_dir)
128 endif %?INSTALL%
129
130
131 ## ---------- ##
132 ## Cleaning.  ##
133 ## ---------- ##
134
135 .PHONY clean-am: clean-lisp
136 clean-lisp:
137         -rm -f elc-stamp $(ELCFILES)
138
139
140 ## -------------- ##
141 ## Distributing.  ##
142 ## -------------- ##
143
144 if %?DIST%
145 DIST_COMMON += %DISTVAR%
146 endif %?DIST%