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