NetBSD/sys/lib/libsa/Makefile

61 lines
1.5 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.36 1999/11/11 20:22:00 thorpej Exp $
1994-01-26 05:03:32 +03:00
LIB= sa
MKPIC= no
MKPROFILE=no
1994-01-26 05:03:32 +03:00
SA_USE_CREAD?= no
SA_INCLUDE_NET?= yes
SA_USE_LOADFILE?= no
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${SADIR} ${SACPPFLAGS} ${SAMISCCPPFLAGS} \
-DCOMPAT_UFS ${DEBUGCPPFLAGS}
1995-09-15 00:55:00 +04:00
#COPTS+= -ansi -pedantic -Wall
.PATH.c: ${SADIR}
# stand routines
SRCS+= alloc.c bcmp.c bcopy.c bzero.c errno.c exit.c exec.c getfile.c gets.c \
globals.c htonl.c htons.c inet_addr.c intoa.c memcmp.c memcpy.c \
memset.c ntohs.c ntohl.c panic.c printf.c snprintf.c sprintf.c \
strlen.c strcmp.c strncmp.c strerror.c subr_prf.c twiddle.c \
vsprintf.c checkpasswd.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_USE_LOADFILE} == "yes")
SRCS+= loadfile.c
.endif
.if (${SA_INCLUDE_NET} == "yes")
# network routines
SRCS+= arp.c ether.c in_cksum.c net.c netif.c rpc.c
# 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
SRCS+= nfs.c tftp.c
.endif
SRCS+= lfs.c ufs.c ufs_ls.c cd9660.c ustarfs.c
1994-01-26 05:03:32 +03:00
# quad routines
SRCS+= ashrdi3.c
# 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`