summaryrefslogtreecommitdiff
path: root/usr.sbin/lpd/Makefile
blob: 122ee34cbeda0e4d886daf2afe5ba49e98a07696 (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
27
28
29
30
31
32
33
34
#	$OpenBSD: Makefile,v 1.1.1.1 2018/04/27 16:14:35 eric Exp $

PROG=		lpd

SRCS+=		control.c
SRCS+=		engine.c
SRCS+=		engine_lpr.c
SRCS+=		frontend.c
SRCS+=		frontend_lpr.c
SRCS+=		iobuf.c
SRCS+=		io.c
SRCS+=		log.c
SRCS+=		logmsg.c
SRCS+=		lp.c
SRCS+=		lp_banner.c
SRCS+=		lp_displayq.c
SRCS+=		lp_stty.c
SRCS+=		lp_rmjob.c
SRCS+=		lpd.c
SRCS+=		parse.y
SRCS+=		printer.c
SRCS+=		proc.c
SRCS+=		resolver.c

NOMAN=		noman
BINDIR=		/usr/sbin

CFLAGS+= -Wall -I${.CURDIR}
YFLAGS=

LDADD+=		-levent -lutil
DPADD+=		${LIBEVENT} ${LIBUTIL}

.include <bsd.prog.mk>