diff options
| author | Glenn Morris | 2011-05-24 21:23:14 -0400 |
|---|---|---|
| committer | Glenn Morris | 2011-05-24 21:23:14 -0400 |
| commit | 7bdede3f5e21e94de5ec26b73971c3a9697cc99b (patch) | |
| tree | cd0c735d6f6eb5905c4bd816cef013c11c45ffe3 /lib-src/Makefile.in | |
| parent | a22d9d2c2a51fd6ed6ffd2d19c30fa4e93352a08 (diff) | |
| download | emacs-7bdede3f5e21e94de5ec26b73971c3a9697cc99b.tar.gz emacs-7bdede3f5e21e94de5ec26b73971c3a9697cc99b.zip | |
Tiny simplifications in lib-src/Makfile.in
* lib-src/Makfile.in (REGEXPOBJ, REGEXPDEPS): Remove. Replace by expansion.
(etags${EXEEXT}): Just depend on regex.o, not regex.h as well.
Diffstat (limited to 'lib-src/Makefile.in')
| -rw-r--r-- | lib-src/Makefile.in | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 24d89606195..5c9a62a2c56 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -313,17 +313,14 @@ test-distrib${EXEEXT}: ${srcdir}/test-distrib.c | |||
| 313 | ../lib/libgnu.a: ../src/config.h | 313 | ../lib/libgnu.a: ../src/config.h |
| 314 | cd ../lib && $(MAKE) libgnu.a | 314 | cd ../lib && $(MAKE) libgnu.a |
| 315 | 315 | ||
| 316 | REGEXPOBJ = regex.o | ||
| 317 | REGEXPDEPS = $(REGEXPOBJ) $(srcdir)/../src/regex.h | ||
| 318 | |||
| 319 | regex.o: $(srcdir)/../src/regex.c $(srcdir)/../src/regex.h ../src/config.h | 316 | regex.o: $(srcdir)/../src/regex.c $(srcdir)/../src/regex.h ../src/config.h |
| 320 | ${CC} -c ${CPP_CFLAGS} -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \ | 317 | ${CC} -c ${CPP_CFLAGS} -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \ |
| 321 | ${srcdir}/../src/regex.c | 318 | ${srcdir}/../src/regex.c |
| 322 | 319 | ||
| 323 | etags${EXEEXT}: ${srcdir}/etags.c $(REGEXPDEPS) ../src/config.h | 320 | etags${EXEEXT}: ${srcdir}/etags.c regex.o ../src/config.h |
| 324 | $(CC) ${ALL_CFLAGS} -DEMACS_NAME="\"GNU Emacs\"" \ | 321 | $(CC) ${ALL_CFLAGS} -DEMACS_NAME="\"GNU Emacs\"" \ |
| 325 | -DVERSION="\"${version}\"" ${srcdir}/etags.c \ | 322 | -DVERSION="\"${version}\"" ${srcdir}/etags.c \ |
| 326 | $(REGEXPOBJ) $(LOADLIBES) -o etags | 323 | regex.o $(LOADLIBES) -o etags |
| 327 | 324 | ||
| 328 | ebrowse${EXEEXT}: ${srcdir}/ebrowse.c ${srcdir}/../lib/min-max.h ../src/config.h | 325 | ebrowse${EXEEXT}: ${srcdir}/ebrowse.c ${srcdir}/../lib/min-max.h ../src/config.h |
| 329 | $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" \ | 326 | $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" \ |
| @@ -334,7 +331,7 @@ ebrowse${EXEEXT}: ${srcdir}/ebrowse.c ${srcdir}/../lib/min-max.h ../src/config.h | |||
| 334 | ctags${EXEEXT}: etags${EXEEXT} | 331 | ctags${EXEEXT}: etags${EXEEXT} |
| 335 | $(CC) ${ALL_CFLAGS} -DCTAGS -DEMACS_NAME="\"GNU Emacs\"" \ | 332 | $(CC) ${ALL_CFLAGS} -DCTAGS -DEMACS_NAME="\"GNU Emacs\"" \ |
| 336 | -DVERSION="\"${version}\"" ${srcdir}/etags.c \ | 333 | -DVERSION="\"${version}\"" ${srcdir}/etags.c \ |
| 337 | $(REGEXPOBJ) $(LOADLIBES) -o ctags | 334 | regex.o $(LOADLIBES) -o ctags |
| 338 | 335 | ||
| 339 | profile${EXEEXT}: ${srcdir}/profile.c ../src/config.h | 336 | profile${EXEEXT}: ${srcdir}/profile.c ../src/config.h |
| 340 | $(CC) ${ALL_CFLAGS} ${srcdir}/profile.c $(LOADLIBES) -o profile | 337 | $(CC) ${ALL_CFLAGS} ${srcdir}/profile.c $(LOADLIBES) -o profile |