aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-10-16 10:00:36 +0000
committerRichard M. Stallman1994-10-16 10:00:36 +0000
commitb2f3c6b2b8b0b8f84e825919573ffb1071a3bc27 (patch)
tree59b3e0827fa7c83f98f4ef3478883ae41256dd41
parent509c11e161339dcc03e00f75a3e54de85022fc9b (diff)
downloademacs-b2f3c6b2b8b0b8f84e825919573ffb1071a3bc27.tar.gz
emacs-b2f3c6b2b8b0b8f84e825919573ffb1071a3bc27.zip
(bitmapdir): New variable.
(src/paths.h, paths-force): Edit PATH_BITMAPS.
-rw-r--r--Makefile.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 716b836183d..dbbcd5b37a4 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -99,6 +99,9 @@ manext=.1
99# system, it is inappropriate to imply that it is part of Emacs. 99# system, it is inappropriate to imply that it is part of Emacs.
100infodir=@infodir@ 100infodir=@infodir@
101 101
102# Where to look for bitmap files.
103bitmapdir=@bitmapdir@
104
102# Where to find the source code. The source code for Emacs's C kernel is 105# Where to find the source code. The source code for Emacs's C kernel is
103# expected to be in ${srcdir}/src, and the source code for Emacs's 106# expected to be in ${srcdir}/src, and the source code for Emacs's
104# utility programs is expected to be in ${srcdir}/lib-src. This is 107# utility programs is expected to be in ${srcdir}/lib-src. This is
@@ -208,6 +211,7 @@ src/paths.h: Makefile ${srcdir}/src/paths.h.in
208 -e 's;\(#.*PATH_EXEC\).*$$;\1 "${archlibdir}";' \ 211 -e 's;\(#.*PATH_EXEC\).*$$;\1 "${archlibdir}";' \
209 -e 's;\(#.*PATH_INFO\).*$$;\1 "${infodir}";' \ 212 -e 's;\(#.*PATH_INFO\).*$$;\1 "${infodir}";' \
210 -e 's;\(#.*PATH_DATA\).*$$;\1 "${etcdir}";' \ 213 -e 's;\(#.*PATH_DATA\).*$$;\1 "${etcdir}";' \
214 -e 's;\(#.*PATH_BITMAPS\).*$$;\1 "${bitmapdir}";' \
211 -e 's;\(#.*PATH_DOC\).*$$;\1 "${docdir}";' \ 215 -e 's;\(#.*PATH_DOC\).*$$;\1 "${docdir}";' \
212 -e 's;\(#.*PATH_LOCK\).*$$;\1 "${lockdir}/";') && \ 216 -e 's;\(#.*PATH_LOCK\).*$$;\1 "${lockdir}/";') && \
213 ${srcdir}/move-if-change paths.h.tmp$$$$ src/paths.h 217 ${srcdir}/move-if-change paths.h.tmp$$$$ src/paths.h
@@ -232,6 +236,7 @@ paths-force: FRC src/paths.h
232 -e 's;\(#.*PATH_EXEC\).*$$;\1 "${archlibdir}";' \ 236 -e 's;\(#.*PATH_EXEC\).*$$;\1 "${archlibdir}";' \
233 -e 's;\(#.*PATH_INFO\).*$$;\1 "${infodir}";' \ 237 -e 's;\(#.*PATH_INFO\).*$$;\1 "${infodir}";' \
234 -e 's;\(#.*PATH_DATA\).*$$;\1 "${etcdir}";' \ 238 -e 's;\(#.*PATH_DATA\).*$$;\1 "${etcdir}";' \
239 -e 's;\(#.*PATH_BITMAPS\).*$$;\1 "${bitmapdir}";' \
235 -e 's;\(#.*PATH_DOC\).*$$;\1 "${docdir}";' \ 240 -e 's;\(#.*PATH_DOC\).*$$;\1 "${docdir}";' \
236 -e 's;\(#.*PATH_LOCK\).*$$;\1 "${lockdir}/";') && \ 241 -e 's;\(#.*PATH_LOCK\).*$$;\1 "${lockdir}/";') && \
237 ${srcdir}/move-if-change paths.h.tmp$$$$ src/paths.h 242 ${srcdir}/move-if-change paths.h.tmp$$$$ src/paths.h
@@ -329,6 +334,8 @@ install-arch-indep: mkdir
329 rm -f $${subdir}/*~ ; \ 334 rm -f $${subdir}/*~ ; \
330 done) ; \ 335 done) ; \
331 done 336 done
337 -rm -f ${lispdir}/subdirs.el
338 ./update-subdirs ${lispdir}
332 if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ 339 if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \
333 then \ 340 then \
334 echo "Copying etc/DOC-* ..." ; \ 341 echo "Copying etc/DOC-* ..." ; \
@@ -514,6 +521,7 @@ check:
514 @echo "We don't have any tests for GNU Emacs yet." 521 @echo "We don't have any tests for GNU Emacs yet."
515 522
516dist: 523dist:
524 ./update-subdirs ${srcdir}/lisp
517 cd ${srcdir}; make-dist 525 cd ${srcdir}; make-dist
518 526
519.PHONY: info dvi dist check 527.PHONY: info dvi dist check