Skip to content
Snippets Groups Projects
Commit 3b816258 authored by wlott's avatar wlott
Browse files

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.
parent 4ec7f41d
No related branches found
No related tags found
No related merge requests found
# $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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment