changeset 1585:447d89e51c6e

* Makefile.in (doxemacs, dotemacs): Explicitly pass along the CC variable in these rules, just as in the `doall' rule.
author Jim Blandy <jimb@redhat.com>
date Mon, 16 Nov 1992 00:32:56 +0000
parents fed9a9ee5156
children f84e400808d0
files src/=Makefile.in
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/=Makefile.in	Mon Nov 16 00:31:04 1992 +0000
+++ b/src/=Makefile.in	Mon Nov 16 00:32:56 1992 +0000
@@ -28,12 +28,12 @@
 xemacs: doxemacs
 
 doxemacs: xmakefile
-	$(MAKE) -f xmakefile ${MFLAGS} xemacs
+	$(MAKE) CC='${CC}' -f xmakefile ${MFLAGS} xemacs
 
 temacs: dotemacs
 
 dotemacs: xmakefile
-	$(MAKE) -f xmakefile ${MFLAGS} temacs
+	$(MAKE) CC='${CC}' -f xmakefile ${MFLAGS} temacs
 
 # If you have a problem with cc -E here, changing
 # the definition of CPP above may fix it.