Makefile.powerpc revision 86276
1193323Sed# Makefile.powerpc -- with config changes.
2193323Sed# Copyright 1990 W. Jolitz
3193323Sed#	from: @(#)Makefile.i386	7.1 5/10/91
4193323Sed# $FreeBSD: head/sys/conf/Makefile.powerpc 86276 2001-11-11 20:33:02Z imp $
5193323Sed#
6193323Sed# Makefile for FreeBSD
7193323Sed#
8193323Sed# This makefile is constructed from a machine description:
9193323Sed#	config machineid
10243830Sdim# Most changes should be made in the machine description
11243830Sdim#	/sys/powerpc/conf/``machineid''
12243830Sdim# after which you should do
13193323Sed#	 config machineid
14263508Sdim# Generic makefile changes should be made in
15263508Sdim#	/sys/conf/Makefile.powerpc
16263508Sdim# after which config should be rerun for all machines.
17263508Sdim#
18263508Sdim
19263508Sdim# Which version of config(8) is required.
20193323Sed%VERSREQ=	500008
21193323Sed
22193323Sed# Temporary stuff while we're still embryonic
23249423SdimNO_MODULES?=	yes
24263508SdimFMT=
25249423Sdim
26193323SedSTD8X16FONT?=	iso
27249423Sdim
28193323Sed.if !defined(S)
29193323Sed.if exists(./@/.)
30193323SedS=	./@
31198090Srdivacky.else
32263508SdimS=	../../..
33263508Sdim.endif
34193323Sed.endif
35193323Sed.include "$S/conf/kern.pre.mk"
36193323Sed
37193323Sed_OS!=uname
38193323Sed.if ${_OS} != "FreeBSD"
39193323SedCWARNFLAGS=-Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes \
40193323Sed	   -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual
41193323SedCOPTS+= -D__ELF__ -D__FreeBSD__ -msoft-float
42193323Sed.endif
43193323Sed
44193323Sed%BEFORE_DEPEND
45193323Sed
46193323Sed%OBJS
47193323Sed
48193323Sed%FILES.c
49193323Sed
50193323Sed%FILES.s
51193323Sed
52193323Sed%FILES.m
53193323Sed
54193323Sed%CLEAN
55198892Srdivacky
56193323Sed%RULES
57193323Sed
58193323Sed.include "$S/conf/kern.post.mk"
59243830Sdim