blob: 3614b081093a19b2678dcc8607a2a2d993ff23fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $OpenBSD: Makefile,v 1.1 2021/05/19 17:16:51 deraadt Exp $
PROG= dhcpleased
.PATH: ${.CURDIR}/../../../sbin/dhcpleased
SRCS= bpf.c checksum.c control.c dhcpleased.c engine.c frontend.c log.c
MAN=
LDADD+= -levent -lutil
DPADD+= ${LIBEVENT} ${LIBUTIL}
.include <bsd.prog.mk>
|