Deleted Added
full compact
Makefile.powerpc (48308) Makefile.powerpc (48440)
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# $Id: Makefile.i386,v 1.155 1999/06/28 07:19:51 phk Exp $
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:
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 @echo "see $S/kern/Makefile for tags"
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
226
227install install.debug:
228 @if [ ! -f ${KERNEL}${.TARGET:S/install//} ] ; then \
229 echo "You must first build a kernel first." ; \
230 exit 1 ; \
231 fi
232.if exists(${DESTDIR}/${KERNEL})
233 -chflags noschg ${DESTDIR}/${KERNEL}

--- 53 unchanged lines hidden ---
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 ---