blob: 8cac7712bbb1b4288129450c421d4d9dc74ab8c1 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# $OpenBSD: Makefile,v 1.30 2019/08/03 15:22:17 deraadt Exp $
# $NetBSD: Makefile,v 1.13 1996/10/02 16:19:51 ws Exp $
LIB= sa
DIR=${SAREL}${SADIR}
.PATH: ${DIR}
#DEBUGFLAGS= -DBOOTP_DEBUG -DNETIF_DEBUG -DETHER_DEBUG -DNFS_DEBUG -DRPC_DEBUG -DRARP_DEBUG -DDEBUG -DPARANOID -Wall
#DEBUGFLAGS= -Wall
AFLAGS+=${XAFLAGS}
CFLAGS+=${XCFLAGS} -D_STANDALONE -DCOMPAT_UFS $(DEBUGFLAGS) -I${DIR} -I${DIR}/../..
#
# Needed for alpha and macppc
CFLAGS+=$(EXTRACFLAGS)
.if defined(USE_LOADFILE)
SRCS+= loadfile.c
.endif
.if defined(SA_ZLIB)
CPPFLAGS+= -D__INTERNAL_LIBSA_CREAD
.endif
# stand routines
SRCS+= alloc.c memcpy.c memmove.c exit.c getfile.c getchar.c getln.c globals.c \
printf.c putchar.c snprintf.c strerror.c strcmp.c memset.c memcmp.c \
strncpy.c strncmp.c strchr.c
# math from libkern
SRCS+= divdi3.c qdivrem.c
.PATH: ${DIR}/../../lib/libkern
# io routines
SRCS+= close.c closeall.c dev.c disklabel.c dkcksum.c cons.c ioctl.c \
lseek.c open.c nullfs.c read.c stat.c fchmod.c fstat.c \
write.c readdir.c
# boot filesystems
SRCS+= ufs.c cd9660.c
.if defined(SA_ZLIB)
SRCS+= cread.c
.endif
.if !defined(NO_NET)
SRCS+= nfs.c
# network routines
SRCS+= arp.c ether.c in_cksum.c net.c netif.c netudp.c rpc.c
# network info services:
SRCS+= bootp.c rarp.c bootparam.c
.else
# C flags
CFLAGS+=-DNO_NET
.endif
NOPROFILE=
NOPIC=
OBJMACHINE=
install:
.include <bsd.lib.mk>
|