diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2022-10-31 18:31:37 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2022-10-31 18:31:37 +0000 |
commit | c89f4207c50a71d59238b100de860ed01c12aae5 (patch) | |
tree | dc6b3a3b7d8b186fb1da7cde73bbf34e8aafc0ee | |
parent | e7c2ab0fcd9a487c72c622a1091fe68951ddf7f3 (diff) |
Make CLEANFILES patterns not match anything that may live outside of obj.
Running make clean without obj should not remove any non-temp files
like *.conf.
-rw-r--r-- | regress/usr.sbin/bgpd/integrationtests/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/regress/usr.sbin/bgpd/integrationtests/Makefile b/regress/usr.sbin/bgpd/integrationtests/Makefile index ab34483a56a..bacc2622228 100644 --- a/regress/usr.sbin/bgpd/integrationtests/Makefile +++ b/regress/usr.sbin/bgpd/integrationtests/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.16 2022/06/27 13:29:40 claudio Exp $ +# $OpenBSD: Makefile,v 1.17 2022/10/31 18:31:36 claudio Exp $ REGRESS_TARGETS = network_statement md5 ovs mrt \ maxprefix maxprefixout maxcomm \ @@ -6,7 +6,8 @@ REGRESS_TARGETS = network_statement md5 ovs mrt \ BGPD ?= /usr/sbin/bgpd -CLEANFILES += *.mrt *.out *.conf *.log *.fifo api-exabgp* +CLEANFILES += *.mrt *.out exabgp.*.conf *.log *.fifo \ + api-exabgp api-exabgp.d api-exabgp: api-exabgp.c |