NetBSD/sys/arch/sun3/stand/libsa/Makefile

44 lines
982 B
Makefile
Raw Normal View History

1995-06-27 19:57:13 +04:00
# $NetBSD: Makefile,v 1.6 1995/06/27 15:57:13 gwr Exp $
1995-02-15 01:56:36 +03:00
LIB=sa
NOPIC=nopic
NOPROFILE=noprofile
# Logically src/sys
S=${.CURDIR}/../../../..
1995-06-02 01:03:07 +04:00
DIR_SA=$S/lib/libsa
DIR_KERN=$S/lib/libkern
1995-06-27 19:57:13 +04:00
SRC_net= nfs.c rpc.c net.c ether.c arp.c in_cksum.c \
bootparam.c rarp.c
1995-06-10 02:20:17 +04:00
SRC_sa = alloc.c bcopy.c close.c getfile.c open.c \
1995-06-02 01:03:07 +04:00
printf.c read.c strerror.c ufs.c
SRC_kern= ashrdi3.c bcmp.c bzero.c strcmp.c strlen.c
SRC_sun3= control.c ctrlsp.S
SRC_here= clock.c dev_disk.c devopen.c dvma.c \
1995-06-10 02:20:17 +04:00
exec_sun.c gets.c netif_sun.c panic.c \
1995-06-02 01:03:07 +04:00
promboot.c promcons.c promdev.c
1995-06-27 19:57:13 +04:00
SRCS= ${SRC_net} ${SRC_sa} ${SRC_kern} ${SRC_sun3} ${SRC_here}
1995-02-15 01:56:36 +03:00
1995-06-02 01:03:07 +04:00
# DBG= -DDEBUG -DNETIF_DEBUG -DNFS_DEBUG -DRPC_DEBUG \
# -DNET_DEBUG -DRARP_DEBUG -DETHER_DEBUG
1995-02-15 01:56:36 +03:00
1995-06-27 19:57:13 +04:00
DEFS= -DCOMPAT_UFS
INCL= -I. -I${S}/lib/libsa -I${S}
1995-06-02 01:03:07 +04:00
COPTS= -msoft-float -fno-defer-pop -fno-omit-frame-pointer
CFLAGS= -O ${COPTS} ${DEFS} ${DBG} ${INCL}
1995-02-15 01:56:36 +03:00
1995-06-02 01:03:07 +04:00
.PATH: ${DIR_SA} ${DIR_KERN} ../../sun3
1995-02-15 01:56:36 +03:00
all: libsa.a SRT0.o SRT1.o
1995-06-10 02:20:17 +04:00
install:
1995-02-15 01:56:36 +03:00
.include <bsd.lib.mk>