diff options
| author | Richard M. Stallman | 1994-04-23 05:57:42 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-04-23 05:57:42 +0000 |
| commit | 2a3c6d1150e2d6be659f0a05353b5bae0661f7d5 (patch) | |
| tree | e2a7e398d49741182c8d6d3cbcb174f4112a8e8d /src | |
| parent | 7d0e672ed43a49f5aaae972b0522bb845d7f9853 (diff) | |
| download | emacs-2a3c6d1150e2d6be659f0a05353b5bae0661f7d5.tar.gz emacs-2a3c6d1150e2d6be659f0a05353b5bae0661f7d5.zip | |
(alloca.o): Use config_h.
(config_h): Use M_FILE and S_FILE.
(S_FILE, M_FILE): New variables hold names of config files.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 94c4c50a25f..4659b35f0eb 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -40,7 +40,11 @@ shortnamesdir = $(dot)$(dot)/shortnames/ | |||
| 40 | cppdir = $(dot)$(dot)/cpp/ | 40 | cppdir = $(dot)$(dot)/cpp/ |
| 41 | oldXMenudir = $(dot)$(dot)/oldXMenu/ | 41 | oldXMenudir = $(dot)$(dot)/oldXMenu/ |
| 42 | lwlibdir = $(dot)$(dot)/lwlib/ | 42 | lwlibdir = $(dot)$(dot)/lwlib/ |
| 43 | config_h = config.h | 43 | |
| 44 | /* Configuration files for .o files to depend on. */ | ||
| 45 | M_FILE = ${srcdir}/@machfile@ | ||
| 46 | S_FILE = ${srcdir}/@opsysfile@ | ||
| 47 | config_h = config.h $(M_FILE) $(S_FILE) | ||
| 44 | 48 | ||
| 45 | CPPFLAGS= | 49 | CPPFLAGS= |
| 46 | LDFLAGS= | 50 | LDFLAGS= |
| @@ -704,7 +708,7 @@ alloca.o : alloca.c | |||
| 704 | $(ALL_CFLAGS) ${srcdir}/alloca.c | 708 | $(ALL_CFLAGS) ${srcdir}/alloca.c |
| 705 | #else | 709 | #else |
| 706 | #ifndef HAVE_ALLOCA | 710 | #ifndef HAVE_ALLOCA |
| 707 | alloca.o : alloca.s config.h | 711 | alloca.o : alloca.s $(config_h) |
| 708 | /* $(CPP) is cc -E, which may get confused by filenames | 712 | /* $(CPP) is cc -E, which may get confused by filenames |
| 709 | that do not end in .c. So copy file to a safe name. */ | 713 | that do not end in .c. So copy file to a safe name. */ |
| 710 | cp ${srcdir}/alloca.s allocatem.c | 714 | cp ${srcdir}/alloca.s allocatem.c |