blob: 6815b67c49bdd39e61fd76291951e8293571c461 (
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
|
# $OpenBSD: Makefile,v 1.1 2005/04/01 10:40:48 mickey Exp $
LIB= kern
S= ${.CURDIR}/../../../..
M= ${KERNDIR}/arch/${MACHINE_ARCH}
SADIR= ${.CURDIR}/..
KERNDIR=$S/lib/libkern
NOPIC= nopic
NOPROFILE= noprofile
.PATH: ${KERNDIR}
.include "arch/hppa64/Makefile.inc"
# Quad support
SRCS+= adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \
subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
# Other stuff
SRCS+= srandom.c bcd.c
install:
.include <bsd.lib.mk>
CPPFLAGS+= ${DEBUGFLAGS}
CFLAGS+= ${SACFLAGS}
|