summaryrefslogtreecommitdiff
path: root/regress/lib/libagentx/Makefile
blob: 992fd2639625310c5d3bf5a5f00699d50d18101f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# $OpenBSD: Makefile,v 1.2 2021/01/11 22:58:16 bluhm Exp $

.if ! exists(/usr/local/lib/libnetsnmpagent.a)
regress:
	@echo Install net-snmp package to run this regress.
	@echo SKIPPED
.endif

PROG=		agentx
SRCS=		main.c log.c
CFLAGS=		-Wall
NOMAN=		yes
LDADD=		-lagentx -levent

REGRESS_TARGETS=	run-regress-agentx

run-regress-agentx: ${PROG}
	${SUDO} ./${PROG}

.include <bsd.regress.mk>