Makefile revision 1.7
1# $NetBSD: Makefile,v 1.7 1995/09/14 20:55:00 pk 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 printf.c strerror.c 16 17# io routines 18SRCS+= close.c dev.c disklabel.c ioctl.c lseek.c open.c read.c \ 19 stat.c write.c 20 21# network routines 22SRCS+= arp.c ether.c in_cksum.c net.c netif.c rpc.c 23 24# network info services: 25SRCS+= bootp.c rarp.c bootparam.c 26 27# boot filesystems 28SRCS+= ufs.c nfs.c 29 30NOPROFILE= 31NOPIC= 32OBJMACHINE= 33 34install: 35 36.include <bsd.lib.mk> 37