diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2019-01-23 16:02:11 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2019-01-23 16:02:11 -0500 |
commit | dbc48d758ac90748df4befc677b2d21c5cd06d3b (patch) | |
tree | eb57b8ec0c5ef3ef9ac216b4f8821aa48e1246f4 /src/Makefile.in | |
parent | 191394276a4c455edd65e7f827fe8bc8317e8348 (diff) | |
download | emacs-dbc48d758ac90748df4befc677b2d21c5cd06d3b.tar.gz |
Avoid having to build src/emacs when we just want to `make tags`
* Makefile.in (TAGS tags): Remove `src` from the dependencies.
* src/Makefile.in (ctagsfiles1): Strip macuvs.h and fingerprint.c.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r-- | src/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 7eb58732672..5890eac8c63 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -720,7 +720,10 @@ ETAGS = ../lib-src/etags${EXEEXT} ${ETAGS}: FORCE ${MAKE} -C ../lib-src $(notdir $@) -ctagsfiles1 = $(wildcard ${srcdir}/*.[hc]) +# Remove macuvs.h and fingerprint.c since they'd cause `src/emacs` +# to be built before we can get TAGS. +ctagsfiles1 = $(filter-out ${srcdir}/macuvs.h ${srcdir}/fingerprint.c, \ + $(wildcard ${srcdir}/*.[hc])) ctagsfiles2 = $(wildcard ${srcdir}/*.m) ## In out-of-tree builds, TAGS are generated in the build dir, like |