aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2015-06-05 16:12:44 -0400
committerGlenn Morris2015-06-05 16:12:44 -0400
commit18942259ce798a4c5147c10f0cbb0c6138fca08c (patch)
treec20f21101700c1b82c9c46fd357a33072d168bd4
parent1805ce763ebb40d10c0926f8e97de39e3b988722 (diff)
downloademacs-18942259ce798a4c5147c10f0cbb0c6138fca08c.tar.gz
emacs-18942259ce798a4c5147c10f0cbb0c6138fca08c.zip
* lisp/Makefile.in (SUBDIRS): Rename from SUBDIRS_ABS.
(SUBDIRS_REL): Derive from SUBDIRS.
-rw-r--r--lisp/Makefile.in10
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 9c3bf551b93..46de98925de 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -120,16 +120,18 @@ unexport EMACSDATA EMACSDOC EMACSPATH
120# Prevent any setting of EMACSLOADPATH in user environment causing problems. 120# Prevent any setting of EMACSLOADPATH in user environment causing problems.
121emacs = EMACSLOADPATH= '$(EMACS)' $(EMACSOPT) 121emacs = EMACSLOADPATH= '$(EMACS)' $(EMACSOPT)
122 122
123SUBDIRS_REL = $(sort $(shell cd ${srcdir} && find . -type d -print)) 123## Subdirectories, relative to builddir.
124SUBDIRS_ABS = $(sort $(shell find ${srcdir} -type d -print)) 124SUBDIRS = $(sort $(shell find ${srcdir} -type d -print))
125## Subdirectories, relative to srcdir.
126SUBDIRS_REL = $(patsubst ${srcdir}%,.%,${SUBDIRS})
125## All subdirectories except 'obsolete' and 'term'. 127## All subdirectories except 'obsolete' and 'term'.
126SUBDIRS_ALMOST = $(filter-out ${srcdir}/obsolete ${srcdir}/term,${SUBDIRS_ABS}) 128SUBDIRS_ALMOST = $(filter-out ${srcdir}/obsolete ${srcdir}/term,${SUBDIRS})
127## All subdirectories except 'obsolete', 'term', and 'leim' (and subdirs). 129## All subdirectories except 'obsolete', 'term', and 'leim' (and subdirs).
128## We don't want the leim files listed as packages, especially 130## We don't want the leim files listed as packages, especially
129## since many share basenames with files in language/. 131## since many share basenames with files in language/.
130SUBDIRS_FINDER = $(filter-out ${srcdir}/leim%,${SUBDIRS_ALMOST}) 132SUBDIRS_FINDER = $(filter-out ${srcdir}/leim%,${SUBDIRS_ALMOST})
131## All subdirectories in which we might want to create subdirs.el. 133## All subdirectories in which we might want to create subdirs.el.
132SUBDIRS_SUBDIRS = $(filter-out ${srcdir}/cedet% ${srcdir}/leim%,${SUBDIRS_ABS}) 134SUBDIRS_SUBDIRS = $(filter-out ${srcdir}/cedet% ${srcdir}/leim%,${SUBDIRS})
133 135
134# cus-load and finder-inf are not explicitly requested by anything, so 136# cus-load and finder-inf are not explicitly requested by anything, so
135# we add them here to make sure they get built. 137# we add them here to make sure they get built.