From 6f5e9c436cd72386597be0bc5b11dfc4b78f6b6e Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 25 Mar 1994 18:34:05 +0000 Subject: [PATCH] (etags, ctags): Pass -D for VERSION. --- lib-src/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index b732c91aa41..73c099d1f34 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in @@ -189,12 +189,12 @@ getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c etags: ${srcdir}/etags.c $(GETOPTDEPS) ../src/config.h - $(CC) ${ALL_CFLAGS} -DETAGS ${srcdir}/etags.c $(GETOPTOBJS) $(LOADLIBES) -o etags + $(CC) ${ALL_CFLAGS} -DVERSION=${version} ${srcdir}/etags.c $(GETOPTOBJS) $(LOADLIBES) -o etags # We depend on etags to assure that parallel makes don't write two # etags.o files on top of each other. ctags: ${srcdir}/etags.c $(GETOPTDEPS) etags - $(CC) ${ALL_CFLAGS} -DCTAGS ${srcdir}/etags.c $(GETOPTOBJS) $(LOADLIBES) -o ctags + $(CC) ${ALL_CFLAGS} -DCTAGS -DVERSION=${version} ${srcdir}/etags.c $(GETOPTOBJS) $(LOADLIBES) -o ctags wakeup: ${srcdir}/wakeup.c $(CC) ${ALL_CFLAGS} ${srcdir}/wakeup.c $(LOADLIBES) -o wakeup -- 2.39.5