From 7199b0911b9c7fa9df692dd1f234259afadfb1d0 Mon Sep 17 00:00:00 2001 From: "Rodney W. Grimes" Date: Wed, 7 Sep 1994 06:52:25 +0000 Subject: [PATCH] The .c: rule added by Bruce, but as yet unused, causes serious problems for the 1.1.5 FreeBSD make. For now just comment it out until a fix for make can be found. Reviewed by: bde Submitted by: rgrimes --- share/mk/sys.mk | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/share/mk/sys.mk b/share/mk/sys.mk index 9217dc4bcc93..64d743c56412 100644 --- a/share/mk/sys.mk +++ b/share/mk/sys.mk @@ -1,5 +1,5 @@ # from: @(#)sys.mk 8.2 (Berkeley) 3/21/94 -# $Id: sys.mk,v 1.4 1994/08/31 03:57:32 paul Exp $ +# $Id: sys.mk,v 1.5 1994/09/04 02:52:27 jkh Exp $ unix ?= We run FreeBSD, not UNIX. @@ -69,8 +69,10 @@ SHELL ?= sh YACC ?= yacc YFLAGS ?= -d -.c: - ${CC} ${CFLAGS} ${.IMPSRC} -o ${.TARGET} +# This rule currently causes both make from 1.x and 2.x to have problems, +# and is not being used so disable it for now. +#.c: +# ${CC} ${CFLAGS} ${.IMPSRC} -o ${.TARGET} .c.o: ${CC} ${CFLAGS} -c ${.IMPSRC}