Deleted Added
sdiff udiff text old ( 51898 ) new ( 52651 )
full compact
1# Makefile.i386 -- with config changes.
2# Copyright 1990 W. Jolitz
3# from: @(#)Makefile.i386 7.1 5/10/91
4# $FreeBSD: head/sys/conf/Makefile.powerpc 51898 1999-10-03 07:09:31Z bde $
5#
6# Makefile for FreeBSD
7#
8# This makefile is constructed from a machine description:
9# config machineid
10# Most changes should be made in the machine description
11# /sys/i386/conf/``machineid''
12# after which you should do

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

19# Which version of config(8) is required.
20%VERSREQ= 400016
21
22# Can be overridden by makeoptions or /etc/make.conf
23KERNEL?= kernel
24KERNFORMAT?= elf
25STD8X16FONT?= iso
26
27.if exists(./@/.)
28S= ./@
29.else
30S= ../..
31.endif
32I386= ${S}/i386
33
34COPTFLAGS?=-O
35INCLUDES= -nostdinc -I- -I. -I$S
36# This hack is to allow kernel compiles to succeed on machines w/out srcdist
37.if exists($S/../include)
38INCLUDES+= -I$S/../include
39.else

--- 250 unchanged lines hidden ---