Deleted Added
full compact
Makefile.pc98 (18846) Makefile.pc98 (19122)
1# Makefile for FreeBSD(98) after:
2#
3# Makefile.i386 -- with config changes.
4# Copyright 1990 W. Jolitz
5# from: @(#)Makefile.i386 7.1 5/10/91
1# Makefile for FreeBSD(98) after:
2#
3# Makefile.i386 -- with config changes.
4# Copyright 1990 W. Jolitz
5# from: @(#)Makefile.i386 7.1 5/10/91
6# $Id: Makefile.pc98,v 1.5 1996/09/07 02:13:25 asami Exp $
6# $Id: Makefile.pc98,v 1.6 1996/10/09 21:45:45 asami Exp $
7#
8# Makefile for FreeBSD
9#
10# This makefile is constructed from a machine description:
11# config machineid
12# Most changes should be made in the machine description
13# /sys/i386/conf/``machineid''
14# after which you should do

--- 9 unchanged lines hidden (view full) ---

24.if exists(./@/.)
25S= ./@
26.else
27S= ../..
28.endif
29PC98= ${S}/pc98
30I386= ${S}/i386
31
7#
8# Makefile for FreeBSD
9#
10# This makefile is constructed from a machine description:
11# config machineid
12# Most changes should be made in the machine description
13# /sys/i386/conf/``machineid''
14# after which you should do

--- 9 unchanged lines hidden (view full) ---

24.if exists(./@/.)
25S= ./@
26.else
27S= ../..
28.endif
29PC98= ${S}/pc98
30I386= ${S}/i386
31
32CWARNFLAGS?= -W -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit \
33 -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes \
34 -Winline -Wunused -Wpointer-arith
35#
36# The following flags are next up for working on:
37# -Wall
38#
39# When working on removing warnings from code, the `-Werror' flag should be
40# of material assistance.
41#
42COPTFLAGS?=-O
43INCLUDES= -nostdinc -I- -I. -I$S
44# This hack is to allow kernel compiles to succeed on machines w/out srcdist
45.if exists($S/../include)
46INCLUDES+= -I$S/../include
47.else
48INCLUDES+= -I/usr/include
49.endif

--- 135 unchanged lines hidden (view full) ---

185 sh $S/conf/newvers.sh ${KERN_IDENT} ${IDENT}
186 ${CC} ${CFLAGS} -c vers.c
187
188vnode_if.c: $S/kern/vnode_if.sh $S/kern/vnode_if.src
189 sh $S/kern/vnode_if.sh $S/kern/vnode_if.src
190vnode_if.h: $S/kern/vnode_if.sh $S/kern/vnode_if.src
191 sh $S/kern/vnode_if.sh $S/kern/vnode_if.src
192
32COPTFLAGS?=-O
33INCLUDES= -nostdinc -I- -I. -I$S
34# This hack is to allow kernel compiles to succeed on machines w/out srcdist
35.if exists($S/../include)
36INCLUDES+= -I$S/../include
37.else
38INCLUDES+= -I/usr/include
39.endif

--- 135 unchanged lines hidden (view full) ---

175 sh $S/conf/newvers.sh ${KERN_IDENT} ${IDENT}
176 ${CC} ${CFLAGS} -c vers.c
177
178vnode_if.c: $S/kern/vnode_if.sh $S/kern/vnode_if.src
179 sh $S/kern/vnode_if.sh $S/kern/vnode_if.src
180vnode_if.h: $S/kern/vnode_if.sh $S/kern/vnode_if.src
181 sh $S/kern/vnode_if.sh $S/kern/vnode_if.src
182
183.include <bsd.kern.mk>
184
193%RULES
194
195# DO NOT DELETE THIS LINE -- make depend uses it
185%RULES
186
187# DO NOT DELETE THIS LINE -- make depend uses it