Makefile revision 1.11
1# $NetBSD: Makefile,v 1.11 1996/01/13 22:25:32 leo Exp $ 2 3LIB= sa 4 5DIR=${SAREL}${SADIR} 6 7.PATH: ${DIR} 8 9#DEBUGFLAGS= -DNETIF_DEBUG -DETHER_DEBUG -DNFS_DEBUG -DRPC_DEBUG -DRARP_DEBUG -DDEBUG -DPARANOID -Wall 10#DEBUGFLAGS= -ansi -pedantic -Wall 11CFLAGS+=-DSTANDALONE -DCOMPAT_UFS $(DEBUGFLAGS) -I${DIR} -I${DIR}/../.. 12 13# stand routines 14SRCS+= alloc.c bcopy.c exit.c exec.c getfile.c gets.c globals.c \ 15 memcpy.c printf.c strerror.c 16 17# io routines 18SRCS+= close.c closeall.c dev.c disklabel.c dkcksum.c ioctl.c \ 19 lseek.c open.c nullfs.c read.c stat.c fstat.c write.c 20 21.if !defined(NO_NET) 22# network routines 23SRCS+= arp.c ether.c in_cksum.c net.c netif.c rpc.c 24.endif 25 26# network info services: 27SRCS+= bootp.c rarp.c bootparam.c 28 29# boot filesystems 30SRCS+= ufs.c nfs.c 31 32NOPROFILE= 33NOPIC= 34OBJMACHINE= 35 36install: 37 38.include <bsd.lib.mk> 39