blob: 36fdb622099ea437adc43eb19ecb76a3e7c4f1b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.14 2001/12/12 01:49:06 tv Exp $
.include "../Makefile.comp"
DIST= ${IDIST}/src/libs/libdriver
.PATH: ${DIST}
LIB= driver
SRCS= printer.cc input.cc
# lint step doesn't work, because there are no .ln files here, because
# we're only compiling c++ files in this dir
# lint command line is: lint -Cdriver -lc
NOLINT= # defined
NOMAN= # defined
NOPROFILE= # defined
NOPIC= # defined
# only needed during build
libinstall::
.include <bsd.lib.mk>
|