blob: c661e6bf23cd333fc95896a59d779f25fca42666 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# $OpenBSD: Makefile,v 1.3 2004/09/22 22:06:16 miod Exp $
LIB= kern
.PATH: ${.CURDIR}/../../../../lib/libkern
.PATH: ${.CURDIR}/../../../../lib/libkern/arch/mips64
.include "${.CURDIR}/../../../../lib/libkern/arch/mips64/Makefile.inc"
CFLAGS= -O2 ${SAABI} -mno-abicalls -D_NO_ABICALLS ${STANDALONE} \
-nostdinc -I${.CURDIR}/../include -I${.CURDIR}/../../../.. \
-I${.CURDIR}/../../../../lib/libkern \
-I${.CURDIR}/../../../../lib/libkern/arch/mips64 -I${.CURDIR} \
-I${.OBJDIR}
AFLAGS= -x assembler-with-cpp -traditional-cpp -I${.CURDIR}/../include \
-I${.CURDIR}/../../../.. -I${.CURDIR}/../../../../lib/libkern \
-I${.CURDIR}/../../../../lib/libkern/arch/mips64 \
-I${.OBJDIR}
# kern routines
SRCS= __main.c ashrdi3.c bzero.S divdi3.c qdivrem.c strlen.S \
strcmp.c strlcat.c strlcpy.c strncmp.c umoddi3.c udivdi3.c
${OBJS}: ${.CURDIR}/../Makefile.inc
CLEANFILES += machine mips64
NOPROFILE=
NOPIC=
.if !make(libdep) && !make(sadep) && !make(salibdir) && !make(kernlibdir) && !make(obj)
.BEGIN:
@([ -h machine ] || ln -s ${.CURDIR}/../../include machine)
@([ -h mips64 ] || ln -s ${.CURDIR}/../../../mips64/include mips64)
.endif
install:
.include <bsd.lib.mk>
|