Makefile.arm revision 129199
1129199Scognet# Makefile.arm -- with config changes.
2129199Scognet# Copyright 1990 W. Jolitz
3129199Scognet#	from: @(#)Makefile.i386	7.1 5/10/91
4129199Scognet# $FreeBSD: head/sys/conf/Makefile.arm 129199 2004-05-14 11:49:40Z cognet $
5129199Scognet#
6129199Scognet# Makefile for FreeBSD
7129199Scognet#
8129199Scognet# This makefile is constructed from a machine description:
9129199Scognet#	config machineid
10129199Scognet# Most changes should be made in the machine description
11129199Scognet#	/sys/powerpc/conf/``machineid''
12129199Scognet# after which you should do
13129199Scognet#	 config machineid
14129199Scognet# Generic makefile changes should be made in
15129199Scognet#	/sys/conf/Makefile.powerpc
16129199Scognet# after which config should be rerun for all machines.
17129199Scognet#
18129199Scognet
19129199Scognet# Which version of config(8) is required.
20129199Scognet%VERSREQ=	500013
21129199Scognet
22129199Scognet# Temporary stuff while we're still embryonic
23129199ScognetNO_MODULES?=	yes
24129199Scognet
25129199ScognetSTD8X16FONT?=	iso
26129199Scognet
27129199Scognet.if !defined(S)
28129199Scognet.if exists(./@/.)
29129199ScognetS=	./@
30129199Scognet.else
31129199ScognetS=	../../..
32129199Scognet.endif
33129199Scognet.endif
34129199Scognet.include "$S/conf/kern.pre.mk"
35129199Scognet
36129199Scognet
37129199Scognet%BEFORE_DEPEND
38129199Scognet
39129199Scognet%OBJS
40129199Scognet
41129199Scognet%FILES.c
42129199Scognet
43129199Scognet%FILES.s
44129199Scognet
45129199Scognet%FILES.m
46129199Scognet
47129199Scognet%CLEAN
48129199Scognet
49129199Scognet%RULES
50129199Scognet	
51129199Scognet.include "$S/conf/kern.post.mk"
52