GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / toolchains / hndtools-arm-linux-2.6.36-uclibc-4.5.3 / share / automake-1.11 / am / lisp.am
blob3449d180d2e01d02161dbaa51b393492acc76797
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 Free Software Foundation, Inc.
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.
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.
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/>.
18 if %?INSTALL%
19 include inst-vars.am
20 endif %?INSTALL%
22 ## ---------- ##
23 ## Building.  ##
24 ## ---------- ##
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 $@
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 $@.
50 ## Do not call `make elc-stamp' if emacs is not available, because it would
51 ## be useless.
52         @if test "$(EMACS)" != no && test ! -f $@; then \
53 ## If `make -j' is used and more than one file has been erased, several
54 ## processes can execute this block.  We have to make sure that only
55 ## the first one will run `$(MAKE) $(AM_MAKEFLAGS) elc-stamp', and the
56 ## other ones will wait.
58 ## There is a race here if only one child of make receive a signal.
59 ## In that case the build may fail.  We remove elc-stamp when we receive
60 ## a signal so we are sure the build will succeed the next time.
61           trap 'rm -rf elc-lock elc-stamp' 1 2 13 15; \
62           if mkdir elc-lock 2>/dev/null; then \
63 ## This code is being executed by the first process.
64             rm -f elc-stamp; \
65             $(MAKE) $(AM_MAKEFLAGS) elc-stamp; \
66             rmdir elc-lock; \
67           else \
68 ## This code is being executed by the follower processes.
69 ## Wait until the first process is done.
70             while test -d elc-lock; do sleep 1; done; \
71 ## Succeed if and only if the first process succeeded.
72             test -f elc-stamp; exit $$?; \
73           fi; \
74         else : ; fi
77 ## ------------ ##
78 ## Installing.  ##
79 ## ------------ ##
81 if %?INSTALL%
82 am__installdirs += "$(DESTDIR)$(%NDIR%dir)"
83 %DIR%LISP_INSTALL = %BASE?$(INSTALL_DATA):$(install_sh_DATA)%
84 .PHONY install-%EXEC?exec:data%-am: install-%DIR%LISP
85 install-%DIR%LISP: $(%DIR%_LISP) $(ELCFILES)
86         @$(NORMAL_INSTALL)
87 ## Do not install anything if EMACS was not found.
88         @if test "$(EMACS)" != no && test -n "$(%NDIR%dir)"; then \
89           $(MKDIR_P) "$(DESTDIR)$(%NDIR%dir)"; \
90 ?!BASE?   $(am__vpath_adj_setup) \
91 ## Funny invocation because Makefile variable can be empty, leading to
92 ## a syntax error in sh.
93           list='$(%DIR%_LISP)'; for p in $$list; do \
94 ## A lisp file can be in the source directory or the build directory.
95             if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
96             %BASE?$(am__strip_dir):$(am__vpath_adj)% \
97             echo " $(%DIR%LISP_INSTALL) '$$d$$p' '$(DESTDIR)$(%NDIR%dir)/$$f'"; \
98             $(%DIR%LISP_INSTALL) "$$d$$p" "$(DESTDIR)$(%NDIR%dir)/$$f" || exit $$?; \
99 ## Only install .elc file if it exists.
100             if test -f $${p}c; then \
101               echo " $(%DIR%LISP_INSTALL) '$${p}c' '$(DESTDIR)$(%NDIR%dir)/$${f}c'"; \
102               $(%DIR%LISP_INSTALL) "$${p}c" "$(DESTDIR)$(%NDIR%dir)/$${f}c" || exit $$?; \
103             else : ; fi; \
104           done; \
105         else : ; fi
106 endif %?INSTALL%
109 ## -------------- ##
110 ## Uninstalling.  ##
111 ## -------------- ##
113 if %?INSTALL%
114 .PHONY uninstall-am: uninstall-%DIR%LISP
115 uninstall-%DIR%LISP:
116         @$(NORMAL_UNINSTALL)
117 ## Do not uninstall anything if EMACS was not found.
118         @test "$(EMACS)" != no && test -n "$(%NDIR%dir)" || exit 0; \
119         list='$(%DIR%_LISP)'; \
120 ?BASE?  files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
121 ?!BASE? $(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
122         test -n "$$files" || exit 0; \
123         filesc=`echo "$$files" | sed 's|$$|c|'`; \
124         echo " ( cd '$(DESTDIR)$(%NDIR%dir)' && rm -f" $$files ")"; \
125         cd "$(DESTDIR)$(%NDIR%dir)" && rm -f $$files || exit $$?; \
126         echo " ( cd '$(DESTDIR)$(%NDIR%dir)' && rm -f" $$filesc ")"; \
127         cd "$(DESTDIR)$(%NDIR%dir)" && rm -f $$filesc
128 endif %?INSTALL%
131 ## ---------- ##
132 ## Cleaning.  ##
133 ## ---------- ##
135 .PHONY clean-am: clean-lisp
136 clean-lisp:
137         -rm -f elc-stamp $(ELCFILES)
140 ## -------------- ##
141 ## Distributing.  ##
142 ## -------------- ##
144 if %?DIST%
145 DIST_COMMON += %DISTVAR%
146 endif %?DIST%