Deleted Added
full compact
Makefile.powerpc (51898) Makefile.powerpc (52651)
1# Makefile.i386 -- with config changes.
2# Copyright 1990 W. Jolitz
3# from: @(#)Makefile.i386 7.1 5/10/91
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 $
4# $FreeBSD: head/sys/conf/Makefile.powerpc 52651 1999-10-30 09:28:27Z marcel $
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
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 !defined(S)
27.if exists(./@/.)
28S= ./@
29.else
30S= ../..
31.endif
28.if exists(./@/.)
29S= ./@
30.else
31S= ../..
32.endif
33.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 ---
34I386= ${S}/i386
35
36COPTFLAGS?=-O
37INCLUDES= -nostdinc -I- -I. -I$S
38# This hack is to allow kernel compiles to succeed on machines w/out srcdist
39.if exists($S/../include)
40INCLUDES+= -I$S/../include
41.else

--- 250 unchanged lines hidden ---