diff options
| author | Richard M. Stallman | 1995-08-18 16:23:23 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-08-18 16:23:23 +0000 |
| commit | 361b7640072e3c34e68a11f9f8765bd8716c3529 (patch) | |
| tree | f0dc70f1b3dc08989b664adc758cbfb09fa23220 /lib-src | |
| parent | 105ad0da853d7459489a148629e8b8741799b07f (diff) | |
| download | emacs-361b7640072e3c34e68a11f9f8765bd8716c3529.tar.gz emacs-361b7640072e3c34e68a11f9f8765bd8716c3529.zip | |
(getdate.c): New target.
(getdate.o): Just compile getdate.c.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/Makefile.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index f5adef67ab7..992d9715188 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -368,10 +368,12 @@ hexl: ${srcdir}/hexl.c | |||
| 368 | $(CC) ${ALL_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl | 368 | $(CC) ${ALL_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl |
| 369 | 369 | ||
| 370 | TIMEROBJS=getdate.o timer.o $(ALLOCA) | 370 | TIMEROBJS=getdate.o timer.o $(ALLOCA) |
| 371 | getdate.o: ${srcdir}/getdate.y ../src/config.h | 371 | $(srcdir)/getdate.c: ${srcdir}/getdate.y |
| 372 | ${YACC} ${YFLAGS} ${srcdir}/getdate.y | 372 | cd $(srcdir); ${YACC} ${YFLAGS} getdate.y |
| 373 | $(CC) $(CPP_CFLAGS) -c y.tab.c | 373 | cd $(srcdir); mv y.tab.c getdate.c |
| 374 | mv y.tab.o getdate.o | 374 | getdate.o: ${srcdir}/getdate.c ../src/config.h |
| 375 | $(CC) $(CPP_CFLAGS) -c ${srcdir}/getdate.c | ||
| 376 | |||
| 375 | timer.o: ${srcdir}/timer.c ../src/config.h | 377 | timer.o: ${srcdir}/timer.c ../src/config.h |
| 376 | $(CC) -c $(CPP_CFLAGS) ${srcdir}/timer.c | 378 | $(CC) -c $(CPP_CFLAGS) ${srcdir}/timer.c |
| 377 | timer: ${TIMEROBJS} | 379 | timer: ${TIMEROBJS} |