aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-23 05:57:42 +0000
committerRichard M. Stallman1994-04-23 05:57:42 +0000
commit2a3c6d1150e2d6be659f0a05353b5bae0661f7d5 (patch)
treee2a7e398d49741182c8d6d3cbcb174f4112a8e8d /src
parent7d0e672ed43a49f5aaae972b0522bb845d7f9853 (diff)
downloademacs-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.in8
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/
40cppdir = $(dot)$(dot)/cpp/ 40cppdir = $(dot)$(dot)/cpp/
41oldXMenudir = $(dot)$(dot)/oldXMenu/ 41oldXMenudir = $(dot)$(dot)/oldXMenu/
42lwlibdir = $(dot)$(dot)/lwlib/ 42lwlibdir = $(dot)$(dot)/lwlib/
43config_h = config.h 43
44/* Configuration files for .o files to depend on. */
45M_FILE = ${srcdir}/@machfile@
46S_FILE = ${srcdir}/@opsysfile@
47config_h = config.h $(M_FILE) $(S_FILE)
44 48
45CPPFLAGS= 49CPPFLAGS=
46LDFLAGS= 50LDFLAGS=
@@ -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
707alloca.o : alloca.s config.h 711alloca.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