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