diff options
Diffstat (limited to 'src')
| -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} | |||
| 720 | ${ETAGS}: FORCE | 720 | ${ETAGS}: FORCE |
| 721 | ${MAKE} -C ../lib-src $(notdir $@) | 721 | ${MAKE} -C ../lib-src $(notdir $@) |
| 722 | 722 | ||
| 723 | ctagsfiles1 = $(wildcard ${srcdir}/*.[hc]) | 723 | # Remove macuvs.h and fingerprint.c since they'd cause `src/emacs` |
| 724 | # to be built before we can get TAGS. | ||
| 725 | ctagsfiles1 = $(filter-out ${srcdir}/macuvs.h ${srcdir}/fingerprint.c, \ | ||
| 726 | $(wildcard ${srcdir}/*.[hc])) | ||
| 724 | ctagsfiles2 = $(wildcard ${srcdir}/*.m) | 727 | ctagsfiles2 = $(wildcard ${srcdir}/*.m) |
| 725 | 728 | ||
| 726 | ## In out-of-tree builds, TAGS are generated in the build dir, like | 729 | ## In out-of-tree builds, TAGS are generated in the build dir, like |