diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-03-25 18:34:05 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-03-25 18:34:05 +0000 |
commit | 7209a65dd17a14b72697e47a2c7e30bca1bb444a (patch) | |
tree | 3371e13160f2cc7fd33026edf62a018b760f32db /lib-src | |
parent | f2c079abbdf84f3be72d91e6ac5deffaa36a48e9 (diff) | |
download | emacs-7209a65dd17a14b72697e47a2c7e30bca1bb444a.tar.gz |
(etags, ctags): Pass -D for VERSION.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/Makefile.in | 4 |
1 files 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 |