1996-06-14 06:04:54 -04:00
|
|
|
# Makefile for FreeBSD(98) after:
|
|
|
|
|
#
|
|
|
|
|
# Makefile.i386 -- with config changes.
|
|
|
|
|
# Copyright 1990 W. Jolitz
|
|
|
|
|
# from: @(#)Makefile.i386 7.1 5/10/91
|
1999-08-27 21:08:13 -04:00
|
|
|
# $FreeBSD$
|
1996-06-14 06:04:54 -04:00
|
|
|
#
|
|
|
|
|
# Makefile for FreeBSD
|
|
|
|
|
#
|
|
|
|
|
# This makefile is constructed from a machine description:
|
|
|
|
|
# config machineid
|
|
|
|
|
# Most changes should be made in the machine description
|
2001-10-26 06:33:45 -04:00
|
|
|
# /sys/pc98/conf/``machineid''
|
1996-06-14 06:04:54 -04:00
|
|
|
# after which you should do
|
|
|
|
|
# config machineid
|
|
|
|
|
# Generic makefile changes should be made in
|
2001-10-26 06:33:45 -04:00
|
|
|
# /sys/conf/Makefile.pc98
|
1996-06-14 06:04:54 -04:00
|
|
|
# after which config should be rerun for all machines.
|
|
|
|
|
#
|
1997-04-22 08:20:50 -04:00
|
|
|
|
1997-10-23 05:20:16 -04:00
|
|
|
# Which version of config(8) is required.
|
2003-04-15 17:29:11 -04:00
|
|
|
%VERSREQ= 500012
|
1997-10-23 05:20:16 -04:00
|
|
|
|
1999-10-30 05:28:27 -04:00
|
|
|
.if !defined(S)
|
1996-06-14 06:04:54 -04:00
|
|
|
.if exists(./@/.)
|
|
|
|
|
S= ./@
|
|
|
|
|
.else
|
2001-06-30 02:29:47 -04:00
|
|
|
S= ../../..
|
1996-06-14 06:04:54 -04:00
|
|
|
.endif
|
1999-10-30 05:28:27 -04:00
|
|
|
.endif
|
2001-11-02 16:34:20 -05:00
|
|
|
.include "$S/conf/kern.pre.mk"
|
2000-04-05 08:54:13 -04:00
|
|
|
|
2001-11-04 18:10:39 -05:00
|
|
|
EXTRA_KERNELDEP=rm -f ./machine ; ln -s $S/$M/include ./machine
|
2001-11-02 16:34:20 -05:00
|
|
|
MKMODULESENV+= MACHINE=pc98
|
1996-06-14 06:04:54 -04:00
|
|
|
|
|
|
|
|
%BEFORE_DEPEND
|
|
|
|
|
|
|
|
|
|
%OBJS
|
|
|
|
|
|
2000-11-24 22:25:34 -05:00
|
|
|
%FILES.c
|
1996-06-14 06:04:54 -04:00
|
|
|
|
2000-11-24 22:25:34 -05:00
|
|
|
%FILES.s
|
1996-06-14 06:04:54 -04:00
|
|
|
|
2000-11-24 22:25:34 -05:00
|
|
|
%FILES.m
|
1998-09-04 22:35:21 -04:00
|
|
|
|
1996-06-14 06:04:54 -04:00
|
|
|
%CLEAN
|
|
|
|
|
|
|
|
|
|
%RULES
|
2001-11-11 15:33:02 -05:00
|
|
|
|
|
|
|
|
.include "$S/conf/kern.post.mk"
|