diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-01 17:00:41 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-01 17:00:41 +0000 |
commit | 173d01b7c1e9a5d7ba5a6c696a8019061dc41bda (patch) | |
tree | 8c8b7bb08108dca24afcee3bbe301e8ba6f76e81 /sys/arch/hp300/stand/libkern | |
parent | 3e42965de9054a39afc4957c4f099218e709ae51 (diff) |
strcpy/strcat/sprintf removal in all bootblocks. various testing by
various people. outside of some messy things in src/gnu, only one
thing in the main tree now violates this rule: bind
Diffstat (limited to 'sys/arch/hp300/stand/libkern')
-rw-r--r-- | sys/arch/hp300/stand/libkern/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hp300/stand/libkern/Makefile b/sys/arch/hp300/stand/libkern/Makefile index d7f70c51ee2..587a9c18882 100644 --- a/sys/arch/hp300/stand/libkern/Makefile +++ b/sys/arch/hp300/stand/libkern/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 1997/07/15 07:52:21 downsj Exp $ +# $OpenBSD: Makefile,v 1.5 2003/06/01 17:00:34 deraadt Exp $ LIB= kern @@ -12,8 +12,8 @@ AFLAGS= -x assembler-with-cpp -traditional-cpp -I${.CURDIR}/../include \ -I${.CURDIR}/../../../.. -I${.CURDIR}/../../../../lib/libkern # kern routines -SRCS= __main.c ashrdi3.c divdi3.c qdivrem.c strlen.S strcat.S strcmp.S \ - strcpy.S strncmp.S umoddi3.c +SRCS= __main.c ashrdi3.c divdi3.c qdivrem.c strlen.S strcmp.S \ + strncmp.S umoddi3.c ${OBJS}: ${.CURDIR}/../Makefile.inc |