Add %INCLUDES.
Compile tcp_input.c with only -O1 to avoid gcc bug.
This commit is contained in:
parent
f7ead868c0
commit
47e2bdfea4
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile.mmeye,v 1.2 1999/09/14 11:20:52 tsubai Exp $
|
||||
# $NetBSD: Makefile.mmeye,v 1.3 1999/09/21 11:52:21 tsubai Exp $
|
||||
|
||||
# Makefile for NetBSD
|
||||
#
|
||||
|
@ -62,6 +62,8 @@ LINKFLAGS= -N -Ttext 8c010000 -e start
|
|||
.endif
|
||||
STRIPFLAGS= --strip-debug
|
||||
|
||||
%INCLUDES
|
||||
|
||||
### find out what to use for libkern
|
||||
.include "$S/lib/libkern/Makefile.inc"
|
||||
.ifndef PROF
|
||||
|
@ -198,4 +200,8 @@ locore.o: ${MMEYE}/mmeye/locore.s assym.h
|
|||
ffs_inode.o: $S/ufs/ffs/ffs_inode.c
|
||||
${NORMAL_C} -O0
|
||||
|
||||
# XXX compile tcp_input.o always with -O1 to avoid egcs-1.1.2 bug.
|
||||
tcp_input.o: $S/netinet/tcp_input.c
|
||||
${NORMAL_C} -O1
|
||||
|
||||
%RULES
|
||||
|
|
Loading…
Reference in New Issue