Makefile revision 1.3
1#	$Id: Makefile,v 1.3 1994/07/27 07:40:52 cgd Exp $
2
3LIB=	sa
4
5#DEBUGFLAGS= -DNFS_DEBUG -DRPC_DEBUG -DRARP_DEBUG -DDEBUG -DPARANOID -Wall
6CFLAGS+=-DSTANDALONE $(DEBUGFLAGS) -I${.CURDIR} -I${.CURDIR}/../.. -DKERNEL
7
8# stand routines
9SRCS+=	alloc.c bcopy.c exit.c exec.c getfile.c gets.c globals.c \
10	printf.c strerror.c
11
12# io routines
13SRCS+=	close.c dev.c disklabel.c ioctl.c lseek.c open.c read.c \
14	stat.c write.c
15
16# network routines
17SRCS+=	arp.c ether.c in_cksum.c net.c netif.c rpc.c
18
19# network info services:
20SRCS+=	bootp.c rarp.c
21
22# boot filesystems
23SRCS+=	ufs.c nfs.c
24
25NOPROFILE=
26NOPIC=
27OBJMACHINE=
28
29install:
30
31.include <bsd.lib.mk>
32