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