blob: 42a48bb4905cd6247cf06390d3ee47555cca38bb (
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
69
70
71
|
# $OpenBSD: Makefile,v 1.22 2005/05/24 22:25:46 millert 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 PowerPC
CFLAGS+=$(EXTRACFLAGS)
CPPFLAGS+=${XCPPFLAGS}
.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 exit.c exec.c getfile.c gets.c globals.c \
printf.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 fstat.c write.c readdir.c
# unix device
# SRCS+= unixdev.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 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>
|