diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-11-06 23:44:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-11-06 23:44:15 +0000 |
commit | db5edc5acfb074c0029fb953e228d0ba157d57ef (patch) | |
tree | 66695d80c7c4d3ca2bcdf65f555fab03840fd2ba /sys/arch/mvme68k | |
parent | 249b29b8041ac51cf9b37e3af5476f69b9aa16bc (diff) |
clean two more .o files
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r-- | sys/arch/mvme68k/stand/libsa/Makefile | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/sys/arch/mvme68k/stand/libsa/Makefile b/sys/arch/mvme68k/stand/libsa/Makefile index 317525bd0e7..48d9305f58b 100644 --- a/sys/arch/mvme68k/stand/libsa/Makefile +++ b/sys/arch/mvme68k/stand/libsa/Makefile @@ -1,7 +1,9 @@ -# $NetBSD: Makefile,v 1.1.1.1 1995/07/25 23:12:21 chuck Exp $ +# $NetBSD: Makefile,v 1.6 1995/06/27 15:57:13 gwr Exp $ LIB=sa +CLEANFILES+=SRT0.o SRT1.o + NOPIC=nopic NOPROFILE=noprofile @@ -10,26 +12,29 @@ S=${.CURDIR}/../../../.. DIR_SA=$S/lib/libsa DIR_KERN=$S/lib/libkern -SRC_net= nfs.c rpc.c net.c ether.c arp.c in_cksum.c \ +SRC_net= nfs.c rpc.c net.c ether.c arp.c in_cksum.c netif.c \ bootparam.c rarp.c + SRC_sa = alloc.c bcopy.c close.c getfile.c open.c \ - printf.c read.c strerror.c ufs.c + printf.c read.c strerror.c ufs.c globals.c lseek.c SRC_kern= ashrdi3.c bcmp.c bzero.c strcmp.c strlen.c -SRC_here= clock.c devopen.c \ - exec.c gets.c netif.c panic.c \ - machdep.c +SRC_sun3= exec_sun.c + +SRC_here= clock.c devopen.c dvma.c \ + gets.c panic.c \ + promboot.c promcons.c bug.c -SRCS= ${SRC_net} ${SRC_sa} ${SRC_kern} ${SRC_here} +SRCS= ${SRC_net} ${SRC_sa} ${SRC_kern} ${SRC_sun3} ${SRC_here} # DBG= -DDEBUG -DNETIF_DEBUG -DNFS_DEBUG -DRPC_DEBUG \ # -DNET_DEBUG -DRARP_DEBUG -DETHER_DEBUG DEFS= -DCOMPAT_UFS INCL= -I. -I${S}/lib/libsa -I${S} -COPTS= -msoft-float -fno-defer-pop -fno-omit-frame-pointer +COPTS= #-fno-defer-pop CFLAGS= -O ${COPTS} ${DEFS} ${DBG} ${INCL} .PATH: ${DIR_SA} ${DIR_KERN} ../../sun3 |