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
This commit is contained in:
Rodney W. Grimes 1994-09-07 06:52:25 +00:00
parent b9a3bebbc7
commit 7199b0911b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2535

View File

@ -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}