From 755d92f4e5aae0f93ad78444c0cc97324eb6eb10 Mon Sep 17 00:00:00 2001 From: pmai <pmai> Date: Thu, 6 Dec 2001 22:15:34 +0000 Subject: [PATCH] Let GNU make handle the generation of Depends automagically. --- lisp/GNUmakefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/GNUmakefile b/lisp/GNUmakefile index f24230c42..23819cdce 100644 --- a/lisp/GNUmakefile +++ b/lisp/GNUmakefile @@ -1,4 +1,4 @@ -# $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/GNUmakefile,v 1.15 2001/04/26 17:20:28 pw Exp $ +# $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/GNUmakefile,v 1.16 2001/12/06 22:15:34 pmai Exp $ all: lisp.nm @@ -59,10 +59,10 @@ internals.h: clean: rm -f Depends *.o lisp lisp.nm core -depend: ${SRCS} +depend: Depends + +Depends: ${SRCS} $(CC) -MM -E ${DEPEND_FLAGS} ${CFLAGS} ${CPPFLAGS} $? > ,depends mv ,depends Depends -ifneq (,$(wildcard Depends)) include Depends -endif -- GitLab