37 lines
655 B
Makefile
37 lines
655 B
Makefile
# $NetBSD: Makefile,v 1.11 1996/10/05 23:46:43 mrg 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} ${KERNLIB}
|
|
|
|
sadep:
|
|
@echo ${.OBJDIR}/${SALIB}
|
|
|
|
kernlibdir:
|
|
@echo ${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>
|