diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
commit | d6583bb2a13f329cf0332ef2570eb8bb8fc0e39c (patch) | |
tree | ece253b876159b39c620e62b6c9b1174642e070e /sys/arch/sparc/stand/Makefile |
initial import of NetBSD tree
Diffstat (limited to 'sys/arch/sparc/stand/Makefile')
-rw-r--r-- | sys/arch/sparc/stand/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/sys/arch/sparc/stand/Makefile b/sys/arch/sparc/stand/Makefile new file mode 100644 index 00000000000..5d3bd616240 --- /dev/null +++ b/sys/arch/sparc/stand/Makefile @@ -0,0 +1,36 @@ +# $NetBSD: Makefile,v 1.10 1995/10/09 23:25:54 pk Exp $ + +SUBDIR= boot bootxx installboot + +### find out what to use for libkern and libsa +SAREL= +KERNREL= +.include "Makefile.inc" +.include "$S/lib/libsa/Makefile.inc" +.include "$S/lib/libkern/Makefile.inc" + +all: ${SALIB} ${KERNLIB} _SUBDIRUSE + +libdep: + @echo ${.OBJDIR}/${SALIB} ${.OBJDIR}/${KERNLIB} + +sadep: + @echo ${.OBJDIR}/${SALIB} + +kernlibdir: + @echo ${.OBJDIR}/${KERNDST} + +salibdir: + @echo ${.OBJDIR}/${SADST} + +clean:: _SUBDIRUSE + +cleandir: _SUBDIRUSE + +BINDIR=/usr/mdec + +afterinstall: + install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${.CURDIR}/binstall.sh ${DESTDIR}${BINDIR}/binstall + +.include <bsd.subdir.mk> |