NetBSD/sys/lib/libsa/Makefile

48 lines
1.1 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.24 1999/02/12 10:51:28 drochner Exp $
1994-01-26 05:03:32 +03:00
LIB= sa
NOPIC=
NOPROFILE=
1994-01-26 05:03:32 +03:00
SA_USE_CREAD?= no
SA_INCLUDE_NET?= yes
1995-09-15 00:55:00 +04:00
#DEBUGCPPFLAGS= -DBOOTP_DEBUG -DNETIF_DEBUG -DETHER_DEBUG -DNFS_DEBUG -DRPC_DEBUG -DRARP_DEBUG -DDEBUG -DPARANOID
CPPFLAGS= -I. ${SACPPFLAGS} ${SAMISCCPPFLAGS} \
-DCOMPAT_UFS ${DEBUGCPPFLAGS}
1995-09-15 00:55:00 +04:00
#COPTS+= -ansi -pedantic -Wall
# stand routines
SRCS+= alloc.c bcopy.c exit.c exec.c getfile.c gets.c globals.c \
memcmp.c memcpy.c panic.c printf.c strerror.c
1994-01-26 05:03:32 +03:00
# io routines
SRCS+= closeall.c dev.c disklabel.c dkcksum.c ioctl.c nullfs.c stat.c fstat.c
SRCS+= close.c lseek.c open.c read.c write.c
.if (${SA_USE_CREAD} == "yes")
CPPFLAGS+= -D__INTERNAL_LIBSA_CREAD
SRCS+= cread.c
.endif
.if (${SA_INCLUDE_NET} == "yes")
# network routines
SRCS+= arp.c ether.c in_cksum.c net.c netif.c rpc.c
.endif
# network info services:
1995-09-15 00:55:00 +04:00
SRCS+= bootp.c rarp.c bootparam.c
1994-01-26 05:03:32 +03:00
# boot filesystems
1998-09-24 09:23:33 +04:00
SRCS+= ufs.c nfs.c cd9660.c ustarfs.c
1994-01-26 05:03:32 +03:00
# only needed during build
libinstall::
1994-01-26 05:03:32 +03:00
.include <bsd.lib.mk>
lib${LIB}.o:: ${OBJS}
@echo building standard ${LIB} library
@rm -f lib${LIB}.o
@${LD} -r -o lib${LIB}.o `lorder ${OBJS} | tsort`