Home | History | Annotate | Line # | Download | only in libsa
Makefile revision 1.25
      1 #	$NetBSD: Makefile,v 1.25 1999/02/13 02:54:51 lukem Exp $
      2 
      3 LIB=	sa
      4 MKPIC=	no
      5 MKPROFILE=no
      6 
      7 SA_USE_CREAD?= no
      8 SA_INCLUDE_NET?= yes
      9 
     10 #DEBUGCPPFLAGS= -DBOOTP_DEBUG -DNETIF_DEBUG -DETHER_DEBUG -DNFS_DEBUG -DRPC_DEBUG -DRARP_DEBUG -DDEBUG -DPARANOID
     11 CPPFLAGS=	-I. ${SACPPFLAGS} ${SAMISCCPPFLAGS} \
     12 		-DCOMPAT_UFS ${DEBUGCPPFLAGS}
     13 
     14 #COPTS+= -ansi -pedantic -Wall
     15 
     16 # stand routines
     17 SRCS+=	alloc.c bcopy.c exit.c exec.c getfile.c gets.c globals.c \
     18 	memcmp.c memcpy.c panic.c printf.c strerror.c
     19 
     20 # io routines
     21 SRCS+=	closeall.c dev.c disklabel.c dkcksum.c ioctl.c nullfs.c stat.c fstat.c
     22 SRCS+=	close.c lseek.c open.c read.c write.c
     23 .if (${SA_USE_CREAD} == "yes")
     24 CPPFLAGS+= -D__INTERNAL_LIBSA_CREAD
     25 SRCS+=	cread.c
     26 .endif
     27 
     28 .if (${SA_INCLUDE_NET} == "yes")
     29 # network routines
     30 SRCS+=	arp.c ether.c in_cksum.c net.c netif.c rpc.c
     31 .endif
     32 
     33 # network info services:
     34 SRCS+=	bootp.c rarp.c bootparam.c
     35 
     36 # boot filesystems
     37 SRCS+=	ufs.c nfs.c cd9660.c ustarfs.c
     38 
     39 # only needed during build
     40 libinstall::
     41 
     42 .include <bsd.lib.mk>
     43 
     44 lib${LIB}.o:: ${OBJS}
     45 	@echo building standard ${LIB} library
     46 	@rm -f lib${LIB}.o
     47 	@${LD} -r -o lib${LIB}.o `lorder ${OBJS} | tsort`
     48