blob: a69f9c822c65e5157fa68566f840f9974c68d2e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $NetBSD: Makefile,v 1.18 2014/11/21 20:21:08 christos Exp $
LIB=bug
NOPIC= # defined
NOLINT= # defined
NOPROFILE= # defined
S=${.CURDIR}/../../../..
DIR_SA=$S/lib/libsa
SRCS= bugcrt.c delay.c diskrd.c diskwr.c getbrdid.c inchr.c instat.c \
outln.c outstr.c putchar.c return.c rtc_rd.c
OBJS+= bugstart.o
CLEANFILES+= bugstart.o
.include "../Makefile.booters"
# only needed during build
libinstall::
all realall: lib${LIB}.a
.include <bsd.own.mk>
.undef DESTDIR
.include <bsd.lib.mk>
|