Mercurial > emacs
comparison Makefile.in @ 91204:53108e6cea98
Merge from emacs--devo--0
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-294
author | Miles Bader <miles@gnu.org> |
---|---|
date | Thu, 06 Dec 2007 09:51:45 +0000 |
parents | 880960b70474 ce6a9097341e |
children | 606f2d163a64 |
comparison
equal
deleted
inserted
replaced
91203:db40129142b2 | 91204:53108e6cea98 |
---|---|
136 # Where to install and expect the info files describing Emacs. In the | 136 # Where to install and expect the info files describing Emacs. In the |
137 # past, this defaulted to a subdirectory of ${prefix}/lib/emacs, but | 137 # past, this defaulted to a subdirectory of ${prefix}/lib/emacs, but |
138 # since there are now many packages documented with the texinfo | 138 # since there are now many packages documented with the texinfo |
139 # system, it is inappropriate to imply that it is part of Emacs. | 139 # system, it is inappropriate to imply that it is part of Emacs. |
140 infodir=@infodir@ | 140 infodir=@infodir@ |
141 INFO_FILES=ada-mode autotype calc ccmode cl dired-x ebrowse ediff efaq \ | 141 INFO_FILES=ada-mode autotype calc ccmode cl dbus dired-x ebrowse ediff \ |
142 eintr elisp emacs emacs-mime erc eshell eudc flymake forms \ | 142 efaq eintr elisp emacs emacs-mime erc eshell eudc flymake \ |
143 gnus idlwave info message mh-e newsticker org pcl-cvs pgg \ | 143 forms gnus idlwave info message mh-e newsticker nxml-mode \ |
144 rcirc reftex remember sc ses sieve speedbar tramp vip viper \ | 144 org pcl-cvs pgg rcirc reftex remember sc ses sieve speedbar \ |
145 widget woman smtpmail url | 145 tramp vip viper widget woman smtpmail url |
146 | 146 |
147 # Directory for local state files for all programs. | 147 # Directory for local state files for all programs. |
148 localstatedir=@localstatedir@ | 148 localstatedir=@localstatedir@ |
149 | 149 |
150 # Where to look for bitmap files. | 150 # Where to look for bitmap files. |
422 ## That flag is also used in leim/Makefile.in | 422 ## That flag is also used in leim/Makefile.in |
423 | 423 |
424 ## Note that the Makefiles in the etc directory are potentially useful | 424 ## Note that the Makefiles in the etc directory are potentially useful |
425 ## in an installed Emacs, so should not be excluded. | 425 ## in an installed Emacs, so should not be excluded. |
426 | 426 |
427 ## installuser: | 427 ## installuser: |
428 ## http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg01672.html | 428 ## http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg01672.html |
429 ## Nuisance because i) it needs to be the user running install, so | 429 ## Nuisance because i) it needs to be the user running install, so |
430 ## configure can't set it; ii) can't (?) use the result of rule | 430 ## configure can't set it; ii) can't (?) use the result of rule |
431 ## commands to set make variables. | 431 ## commands to set make variables. |
432 install-arch-indep: mkdir info | 432 install-arch-indep: mkdir info |
809 -(cd doc/emacs && $(MAKE) $(MFLAGS) clean) | 809 -(cd doc/emacs && $(MAKE) $(MFLAGS) clean) |
810 -(cd doc/misc && $(MAKE) $(MFLAGS) clean) | 810 -(cd doc/misc && $(MAKE) $(MFLAGS) clean) |
811 -(cd doc/lispref && $(MAKE) $(MFLAGS) clean) | 811 -(cd doc/lispref && $(MAKE) $(MFLAGS) clean) |
812 -(cd doc/lispintro && $(MAKE) $(MFLAGS) clean) | 812 -(cd doc/lispintro && $(MAKE) $(MFLAGS) clean) |
813 (cd leim; $(MAKE) $(MFLAGS) clean) | 813 (cd leim; $(MAKE) $(MFLAGS) clean) |
814 | |
815 .PHONY: check-declare | |
816 | |
817 check-declare: | |
818 @if [ ! -e $(srcdir)/src/emacs ]; then \ | |
819 echo "You must build Emacs to use this command"; \ | |
820 exit 1; \ | |
821 fi | |
822 (cd leim; $(MAKE) $(MFLAGS) $@) | |
823 (cd lisp; $(MAKE) $(MFLAGS) $@) |