2000-10-25 05:49:55 +04:00
|
|
|
# $NetBSD: Makefile,v 1.42 2000/10/25 01:49:55 thorpej Exp $
|
1994-01-26 05:03:32 +03:00
|
|
|
|
|
|
|
LIB= sa
|
1999-02-13 05:54:17 +03:00
|
|
|
MKPIC= no
|
|
|
|
MKPROFILE=no
|
1994-01-26 05:03:32 +03:00
|
|
|
|
1997-01-24 01:19:56 +03:00
|
|
|
SA_USE_CREAD?= no
|
|
|
|
SA_INCLUDE_NET?= yes
|
1999-04-28 13:08:50 +04:00
|
|
|
SA_USE_LOADFILE?= no
|
1995-09-15 00:55:00 +04:00
|
|
|
|
1999-11-12 16:13:59 +03:00
|
|
|
#DEBUGCPPFLAGS= -DBOOTP_DEBUG -DNETIF_DEBUG -DETHER_DEBUG -DNFS_DEBUG -DRPC_DEBUG -DRARP_DEBUG -DNET_DEBUG -DDEBUG -DPARANOID
|
1999-05-07 18:28:50 +04:00
|
|
|
CPPFLAGS= -I${SADIR} ${SACPPFLAGS} ${SAMISCCPPFLAGS} \
|
1997-02-17 00:25:18 +03:00
|
|
|
-DCOMPAT_UFS ${DEBUGCPPFLAGS}
|
1995-09-15 00:55:00 +04:00
|
|
|
|
1997-10-27 01:08:38 +03:00
|
|
|
#COPTS+= -ansi -pedantic -Wall
|
1994-05-08 20:11:14 +04:00
|
|
|
|
1999-05-07 18:28:50 +04:00
|
|
|
.PATH.c: ${SADIR}
|
|
|
|
|
1994-05-08 20:11:14 +04:00
|
|
|
# stand routines
|
1999-04-01 09:12:20 +04:00
|
|
|
SRCS+= alloc.c bcmp.c bcopy.c bzero.c errno.c exit.c exec.c getfile.c gets.c \
|
1999-11-14 00:06:46 +03:00
|
|
|
globals.c memcmp.c memcpy.c memset.c panic.c printf.c \
|
|
|
|
snprintf.c sprintf.c strerror.c subr_prf.c twiddle.c vsprintf.c \
|
|
|
|
checkpasswd.c
|
1994-01-26 05:03:32 +03:00
|
|
|
|
|
|
|
# io routines
|
1997-01-24 01:19:56 +03:00
|
|
|
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
|
1994-05-08 20:11:14 +04:00
|
|
|
|
1999-04-28 13:08:50 +04:00
|
|
|
.if (${SA_USE_LOADFILE} == "yes")
|
|
|
|
SRCS+= loadfile.c
|
|
|
|
.endif
|
1997-01-24 01:19:56 +03:00
|
|
|
.if (${SA_INCLUDE_NET} == "yes")
|
1994-05-08 20:11:14 +04:00
|
|
|
# network routines
|
2000-10-25 05:49:55 +04:00
|
|
|
SRCS+= arp.c ether.c in_cksum.c net.c netif.c rpc.c udp.c
|
1994-05-08 20:11:14 +04:00
|
|
|
|
|
|
|
# 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
|
|
|
|
1994-05-08 20:11:14 +04:00
|
|
|
# boot filesystems
|
1999-02-24 22:31:03 +03:00
|
|
|
SRCS+= nfs.c tftp.c
|
|
|
|
.endif
|
1999-08-19 00:04:39 +04:00
|
|
|
SRCS+= lfs.c ufs.c ufs_ls.c cd9660.c ustarfs.c
|
1994-01-26 05:03:32 +03:00
|
|
|
|
1997-06-01 01:21:13 +04:00
|
|
|
# only needed during build
|
|
|
|
libinstall::
|
|
|
|
|
1994-01-26 05:03:32 +03:00
|
|
|
.include <bsd.lib.mk>
|
1997-01-24 01:19:56 +03:00
|
|
|
|
|
|
|
lib${LIB}.o:: ${OBJS}
|
|
|
|
@echo building standard ${LIB} library
|
|
|
|
@rm -f lib${LIB}.o
|
|
|
|
@${LD} -r -o lib${LIB}.o `lorder ${OBJS} | tsort`
|