Deleted Added
full compact
1# Copyright 1990 W. Jolitz
2# from: @(#)Makefile.i386 7.1 5/10/91
3# $Id: Makefile.i386,v 1.54 1995/01/29 23:42:11 phk Exp $
3# $Id: Makefile.i386,v 1.55 1995/02/26 05:05:53 bde Exp $
4#
5# Makefile for FreeBSD
6#
7# This makefile is constructed from a machine description:
8# config machineid
9# Most changes should be made in the machine description
10# /sys/i386/conf/``machineid''
11# after which you should do

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

75%BEFORE_DEPEND
76
77%OBJS
78
79%CFILES
80
81%LOAD
82
83%CLEAN
84
85# This is slightly different from before in that if you define PROF
86# to anything, it will assume profiling. Don't do "PROF=" to turn
87# profiling off!
88.if exists($S/libkern/obj)
89LIBKERNP=$S/libkern/obj
90.else
91LIBKERNP=$S/libkern
92.endif

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

101 @rm -f libkern.a
102 ln -s ${LIBKERN} libkern.a
103
104${LIBKERN}:
105 @(cd $S/libkern; make)
106
107clean:
108 rm -f eddep kernel tags *.o *.s errs linterrs makelinks genassym \
107 symbols.exclude symbols.sort
109 symbols.exclude symbols.sort ${CLEAN}
110
111#lint: /tmp param.c
112# @lint -hbxn -DGENERIC -Dvolatile= ${COPTS} ${PARAM} \
113# ${I386}/i386/Locore.c ${CFILES} ioconf.c param.c | \
114# grep -v 'struct/union .* never defined' | \
115# grep -v 'possible pointer alignment problem'
116
117symbols.exclude: Makefile

--- 84 unchanged lines hidden ---