diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-07-21 13:23:02 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-07-21 13:23:02 +0000 |
commit | 88debdc9c12d09039a39d9f1e2e7b352a474e2e7 (patch) | |
tree | c9a76df7a9a9c70baa37d87b246f58973ec183a3 | |
parent | 9152dd81b85289febb444ca9839ccc2f56911330 (diff) |
need moddi3 too
-rw-r--r-- | sys/arch/sgi/stand/libkern/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/sgi/stand/libkern/Makefile b/sys/arch/sgi/stand/libkern/Makefile index 00b221a2676..e90e17c4408 100644 --- a/sys/arch/sgi/stand/libkern/Makefile +++ b/sys/arch/sgi/stand/libkern/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 2004/09/23 12:55:58 pefo Exp $ +# $OpenBSD: Makefile,v 1.5 2005/07/21 13:23:01 deraadt Exp $ LIB= kern @@ -17,7 +17,8 @@ AFLAGS= -x assembler-with-cpp -traditional-cpp -I${.CURDIR}/../include \ # kern routines SRCS= __main.c ashrdi3.c bzero.c divdi3.c qdivrem.c strlen.c \ - strcmp.c strlcat.c strlcpy.c strncmp.c umoddi3.c udivdi3.c + strcmp.c strlcat.c strlcpy.c strncmp.c umoddi3.c udivdi3.c \ + moddi3.c ${OBJS}: ${.CURDIR}/../Makefile.inc |