aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorKarl Heuer1994-10-17 20:26:22 +0000
committerKarl Heuer1994-10-17 20:26:22 +0000
commit66ab94d9bb95daa6dceb12a8239ff1186275120e (patch)
tree66d943370b95ac4667abccc7c8f13428c2c56554 /lib-src
parent87485d6fc91710d31c0ed046744f5f7a95f11115 (diff)
downloademacs-66ab94d9bb95daa6dceb12a8239ff1186275120e.tar.gz
emacs-66ab94d9bb95daa6dceb12a8239ff1186275120e.zip
(etags): add dependency on regex.o, link with it.
(REGEXPOBJ, REGEXPDEPS, regex.o): target and macros added.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/Makefile.in9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in
index f121f0aae29..408487812ee 100644
--- a/lib-src/Makefile.in
+++ b/lib-src/Makefile.in
@@ -301,8 +301,13 @@ getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h
301alloca.o: ${srcdir}/alloca.c 301alloca.o: ${srcdir}/alloca.c
302 ${CC} -c ${ALLOCA_CFLAGS} ${srcdir}/alloca.c 302 ${CC} -c ${ALLOCA_CFLAGS} ${srcdir}/alloca.c
303 303
304etags: ${srcdir}/etags.c $(GETOPTDEPS) ../src/config.h 304REGEXPOBJ = regex.o
305 $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(LOADLIBES) -o etags 305REGEXPDEPS = $(REGEXPOBJ) ../src/regex.h
306regex.o: ../src/regex.c ../src/regex.h
307 ${CC} -c ${CPP_CFLAGS} -Uemacs -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER ../src/regex.c
308
309etags: ${srcdir}/etags.c $(GETOPTDEPS) $(REGEXPDEPS) ../src/config.h
310 $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" -DETAGS_REGEXPS ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o etags
306 311
307/* We depend on etags to assure that parallel makes don't write two 312/* We depend on etags to assure that parallel makes don't write two
308 etags.o files on top of each other. */ 313 etags.o files on top of each other. */