From: tb Date: Tue, 13 Jun 2023 10:38:45 +0000 (+0000) Subject: imsg test: simplify Makefile X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=d5abdd01d7a5f24fb6f9b0aab446ef59a9e9067a;p=openbsd imsg test: simplify Makefile --- diff --git a/regress/lib/libutil/imsg/Makefile b/regress/lib/libutil/imsg/Makefile index e0a20efa6e1..9d400ea9be9 100644 --- a/regress/lib/libutil/imsg/Makefile +++ b/regress/lib/libutil/imsg/Makefile @@ -1,12 +1,7 @@ -# $OpenBSD: Makefile,v 1.1 2022/04/23 08:57:52 tobias Exp $ +# $OpenBSD: Makefile,v 1.2 2023/06/13 10:38:45 tb Exp $ -REGRESS_TARGETS= run-regress - -LDFLAGS= -lutil - -CLEANFILES= ibuf_test ibuf_test.d - -run-regress: ibuf_test - ${.OBJDIR}/ibuf_test +PROG= ibuf_test +LDADD= -lutil +DPADD= ${LIBUTIL} .include