mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-26 13:05:18 +01:00
Fix "dependency" spelling error. Implement "clean" entries for device
config entries. Add clean rules to aic7xxx and aic7xxx_seq.h. Submitted by: Pointed out by Bruce Evans <bde@zeta.org.au>
This commit is contained in:
parent
133d8eae53
commit
0bf316f5ac
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=6802
@ -1,6 +1,6 @@
|
||||
# Copyright 1990 W. Jolitz
|
||||
# from: @(#)Makefile.i386 7.1 5/10/91
|
||||
# $Id: Makefile.i386,v 1.54 1995/01/29 23:42:11 phk Exp $
|
||||
# $Id: Makefile.i386,v 1.55 1995/02/26 05:05:53 bde Exp $
|
||||
#
|
||||
# Makefile for FreeBSD
|
||||
#
|
||||
@ -80,6 +80,8 @@ SYSTEM_LD_TAIL= @echo rearranging symbols; \
|
||||
|
||||
%LOAD
|
||||
|
||||
%CLEAN
|
||||
|
||||
# This is slightly different from before in that if you define PROF
|
||||
# to anything, it will assume profiling. Don't do "PROF=" to turn
|
||||
# profiling off!
|
||||
@ -104,7 +106,7 @@ ${LIBKERN}:
|
||||
|
||||
clean:
|
||||
rm -f eddep kernel tags *.o *.s errs linterrs makelinks genassym \
|
||||
symbols.exclude symbols.sort
|
||||
symbols.exclude symbols.sort ${CLEAN}
|
||||
|
||||
#lint: /tmp param.c
|
||||
# @lint -hbxn -DGENERIC -Dvolatile= ${COPTS} ${PARAM} \
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Copyright 1990 W. Jolitz
|
||||
# from: @(#)Makefile.i386 7.1 5/10/91
|
||||
# $Id: Makefile.i386,v 1.54 1995/01/29 23:42:11 phk Exp $
|
||||
# $Id: Makefile.i386,v 1.55 1995/02/26 05:05:53 bde Exp $
|
||||
#
|
||||
# Makefile for FreeBSD
|
||||
#
|
||||
@ -80,6 +80,8 @@ SYSTEM_LD_TAIL= @echo rearranging symbols; \
|
||||
|
||||
%LOAD
|
||||
|
||||
%CLEAN
|
||||
|
||||
# This is slightly different from before in that if you define PROF
|
||||
# to anything, it will assume profiling. Don't do "PROF=" to turn
|
||||
# profiling off!
|
||||
@ -104,7 +106,7 @@ ${LIBKERN}:
|
||||
|
||||
clean:
|
||||
rm -f eddep kernel tags *.o *.s errs linterrs makelinks genassym \
|
||||
symbols.exclude symbols.sort
|
||||
symbols.exclude symbols.sort ${CLEAN}
|
||||
|
||||
#lint: /tmp param.c
|
||||
# @lint -hbxn -DGENERIC -Dvolatile= ${COPTS} ${PARAM} \
|
||||
|
@ -1,16 +1,18 @@
|
||||
# This file tells config what files go into building a kernel,
|
||||
# files marked standard are always included.
|
||||
#
|
||||
# $Id: files.i386,v 1.84 1995/02/17 08:45:59 bde Exp $
|
||||
# $Id: files.i386,v 1.85 1995/02/23 17:19:54 bde Exp $
|
||||
#
|
||||
aic7xxx optional ahc device-driver \
|
||||
dependancy "$S/gnu/misc/aic7xxx/aic7xxx.c" \
|
||||
dependency "$S/gnu/misc/aic7xxx/aic7xxx.c" \
|
||||
compile-with "${CC} -o $@ $>" \
|
||||
no-obj no-implicit-rule
|
||||
no-obj no-implicit-rule \
|
||||
clean "aic7xxx"
|
||||
aic7xxx_seq.h optional ahc device-driver \
|
||||
dependancy "$S/gnu/misc/aic7xxx/aic7xxx.seq aic7xxx" \
|
||||
dependency "$S/gnu/misc/aic7xxx/aic7xxx.seq aic7xxx" \
|
||||
compile-with "./aic7xxx -o $@ $S/gnu/misc/aic7xxx/aic7xxx.seq" \
|
||||
no-obj no-implicit-rule before-depend
|
||||
no-obj no-implicit-rule before-depend \
|
||||
clean "aic7xxx_seq.h"
|
||||
i386/apm/apm.c optional apm device-driver
|
||||
i386/apm/apm_setup.s optional apm
|
||||
i386/i386/autoconf.c standard device-driver
|
||||
@ -146,7 +148,7 @@ i386/isa/wd.c optional wd device-driver
|
||||
i386/isa/wd7000.c optional wds device-driver
|
||||
i386/isa/wt.c optional wt device-driver
|
||||
i386/scsi/aic7xxx.c optional ahc device-driver \
|
||||
dependancy "aic7xxx_seq.h"
|
||||
dependency "aic7xxx_seq.h"
|
||||
gnu/i386/fpemul/div_small.s optional gpl_math_emulate
|
||||
gnu/i386/fpemul/errors.c optional gpl_math_emulate
|
||||
gnu/i386/fpemul/fpu_arith.c optional gpl_math_emulate
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Copyright 1990 W. Jolitz
|
||||
# from: @(#)Makefile.i386 7.1 5/10/91
|
||||
# $Id: Makefile.i386,v 1.54 1995/01/29 23:42:11 phk Exp $
|
||||
# $Id: Makefile.i386,v 1.55 1995/02/26 05:05:53 bde Exp $
|
||||
#
|
||||
# Makefile for FreeBSD
|
||||
#
|
||||
@ -80,6 +80,8 @@ SYSTEM_LD_TAIL= @echo rearranging symbols; \
|
||||
|
||||
%LOAD
|
||||
|
||||
%CLEAN
|
||||
|
||||
# This is slightly different from before in that if you define PROF
|
||||
# to anything, it will assume profiling. Don't do "PROF=" to turn
|
||||
# profiling off!
|
||||
@ -104,7 +106,7 @@ ${LIBKERN}:
|
||||
|
||||
clean:
|
||||
rm -f eddep kernel tags *.o *.s errs linterrs makelinks genassym \
|
||||
symbols.exclude symbols.sort
|
||||
symbols.exclude symbols.sort ${CLEAN}
|
||||
|
||||
#lint: /tmp param.c
|
||||
# @lint -hbxn -DGENERIC -Dvolatile= ${COPTS} ${PARAM} \
|
||||
|
@ -1,16 +1,18 @@
|
||||
# This file tells config what files go into building a kernel,
|
||||
# files marked standard are always included.
|
||||
#
|
||||
# $Id: files.i386,v 1.84 1995/02/17 08:45:59 bde Exp $
|
||||
# $Id: files.i386,v 1.85 1995/02/23 17:19:54 bde Exp $
|
||||
#
|
||||
aic7xxx optional ahc device-driver \
|
||||
dependancy "$S/gnu/misc/aic7xxx/aic7xxx.c" \
|
||||
dependency "$S/gnu/misc/aic7xxx/aic7xxx.c" \
|
||||
compile-with "${CC} -o $@ $>" \
|
||||
no-obj no-implicit-rule
|
||||
no-obj no-implicit-rule \
|
||||
clean "aic7xxx"
|
||||
aic7xxx_seq.h optional ahc device-driver \
|
||||
dependancy "$S/gnu/misc/aic7xxx/aic7xxx.seq aic7xxx" \
|
||||
dependency "$S/gnu/misc/aic7xxx/aic7xxx.seq aic7xxx" \
|
||||
compile-with "./aic7xxx -o $@ $S/gnu/misc/aic7xxx/aic7xxx.seq" \
|
||||
no-obj no-implicit-rule before-depend
|
||||
no-obj no-implicit-rule before-depend \
|
||||
clean "aic7xxx_seq.h"
|
||||
i386/apm/apm.c optional apm device-driver
|
||||
i386/apm/apm_setup.s optional apm
|
||||
i386/i386/autoconf.c standard device-driver
|
||||
@ -146,7 +148,7 @@ i386/isa/wd.c optional wd device-driver
|
||||
i386/isa/wd7000.c optional wds device-driver
|
||||
i386/isa/wt.c optional wt device-driver
|
||||
i386/scsi/aic7xxx.c optional ahc device-driver \
|
||||
dependancy "aic7xxx_seq.h"
|
||||
dependency "aic7xxx_seq.h"
|
||||
gnu/i386/fpemul/div_small.s optional gpl_math_emulate
|
||||
gnu/i386/fpemul/errors.c optional gpl_math_emulate
|
||||
gnu/i386/fpemul/fpu_arith.c optional gpl_math_emulate
|
||||
|
Loading…
Reference in New Issue
Block a user