From 3b8162586ad6e55d52016105a7bb4d958419a731 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Fri, 4 Sep 1992 08:11:54 +0000
Subject: [PATCH] Moved the ``-Xlinker -u -Xlinker'' into UNDEFSYMPATTERN so
 that different config files can do different things.  Added a -E to the cc
 -MM for making depends, because it seems to be needed on the parisc.

---
 lisp/GNUmakefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lisp/GNUmakefile b/lisp/GNUmakefile
index e7c73f854..2e55351e2 100644
--- a/lisp/GNUmakefile
+++ b/lisp/GNUmakefile
@@ -1,4 +1,4 @@
-# $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/GNUmakefile,v 1.2 1992/08/19 02:49:35 wlott Exp $
+# $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/GNUmakefile,v 1.3 1992/09/04 08:11:54 wlott Exp $
 
 all: lisp.nm
 
@@ -36,7 +36,7 @@ version:
 
 undefineds: undefineds.src
 	${CPP} undefineds.src | \
-	sed -e '/^#/d' -e '/^[ 	]*$$/d' -e 's/.*/-Xlinker -u -Xlinker ${UNDEFSYMPATTERN}/' | \
+	sed -e '/^#/d' -e '/^[ 	]*$$/d' -e 's/.*/${UNDEFSYMPATTERN}/' | \
 	sort -u > ,undefineds
 	mv ,undefineds undefineds
 
@@ -52,7 +52,7 @@ clean:
 	rm -f Depends undefineds *.o lisp lisp.nm
 
 depend:
-	$(CC) -MM ${CFLAGS} ${CPPFLAGS} ${SRCS} > ,depends
+	$(CC) -MM -E ${CFLAGS} ${CPPFLAGS} ${SRCS} > ,depends
 	mv ,depends Depends
 
 include Depends
-- 
GitLab