Deleted Added
sdiff udiff text old ( 48308 ) new ( 48440 )
full compact
1# Makefile.i386 -- with config changes.
2# Copyright 1990 W. Jolitz
3# from: @(#)Makefile.i386 7.1 5/10/91
4# $Id: Makefile.i386,v 1.156 1999/06/28 09:21:35 peter Exp $
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

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

217 egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
218 sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
219 echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
220 sort -u | comm -23 - dontlink | \
221 sed 's,../.*/\(.*.o\),rm -f \1;ln -s ../GENERIC/\1 \1,' > makelinks
222 sh makelinks && rm -f dontlink
223
224tags:
225 @[ -f .depend ] || { echo "you must make depend first"; exit 1; }
226 sh $S/conf/systags.sh
227 rm -f tags1
228 sed -e 's, ../, ,' tags > tags1
229
230install install.debug:
231 @if [ ! -f ${KERNEL}${.TARGET:S/install//} ] ; then \
232 echo "You must first build a kernel first." ; \
233 exit 1 ; \
234 fi
235.if exists(${DESTDIR}/${KERNEL})
236 -chflags noschg ${DESTDIR}/${KERNEL}

--- 53 unchanged lines hidden ---