diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-01-28 08:38:44 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-01-28 08:38:44 +0000 |
commit | 1c738407e33310f41e5f251e9666929dae871ac5 (patch) | |
tree | 143ecbadfad17c4523f51023e10c8d0ed4be3ea9 /src/Makefile.in | |
parent | 962a60aa70c98e5e2262786babf64ed558348408 (diff) | |
download | emacs-1c738407e33310f41e5f251e9666929dae871ac5.tar.gz |
(ecrt0.o): Target renamed from crt0.o.
(START_FILES): Use ecrt0.o.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r-- | src/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 6643f2c00ee..4c8e703befd 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -197,7 +197,7 @@ CC = C_COMPILER #define START_FILES pre-crt0.o /lib/crt0.o #endif /* ! defined (COFF_ENCAPSULATE) */ #else /* ! defined (NO_REMAP) */ -#define START_FILES crt0.o +#define START_FILES ecrt0.o #endif /* ! defined (NO_REMAP) */ #endif /* START_FILES */ STARTFILES = START_FILES @@ -814,8 +814,8 @@ casetab.o: casetab.c buffer.h $(config_h) cm.o: cm.c cm.h termhooks.h $(config_h) cmds.o: cmds.c syntax.h buffer.h commands.h window.h $(config_h) pre-crt0.o: pre-crt0.c -crt0.o: crt0.c $(config_h) - CRT0_COMPILE ${srcdir}/crt0.c +ecrt0.o: ecrt0.c $(config_h) + CRT0_COMPILE ${srcdir}/ecrt0.c dired.o: dired.c commands.h buffer.h $(config_h) regex.h dispnew.o: dispnew.c commands.h frame.h window.h buffer.h dispextern.h \ termchar.h termopts.h termhooks.h cm.h disptab.h systty.h systime.h $(config_h) |