mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-01 00:18:15 +01:00
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:
parent
b9a3bebbc7
commit
7199b0911b
@ -1,5 +1,5 @@
|
|||||||
# from: @(#)sys.mk 8.2 (Berkeley) 3/21/94
|
# 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.
|
unix ?= We run FreeBSD, not UNIX.
|
||||||
|
|
||||||
@ -69,8 +69,10 @@ SHELL ?= sh
|
|||||||
YACC ?= yacc
|
YACC ?= yacc
|
||||||
YFLAGS ?= -d
|
YFLAGS ?= -d
|
||||||
|
|
||||||
.c:
|
# This rule currently causes both make from 1.x and 2.x to have problems,
|
||||||
${CC} ${CFLAGS} ${.IMPSRC} -o ${.TARGET}
|
# and is not being used so disable it for now.
|
||||||
|
#.c:
|
||||||
|
# ${CC} ${CFLAGS} ${.IMPSRC} -o ${.TARGET}
|
||||||
|
|
||||||
.c.o:
|
.c.o:
|
||||||
${CC} ${CFLAGS} -c ${.IMPSRC}
|
${CC} ${CFLAGS} -c ${.IMPSRC}
|
||||||
|
Loading…
Reference in New Issue
Block a user