diff options
author | tb <> | 2018-08-30 18:36:59 +0000 |
---|---|---|
committer | tb <> | 2018-08-30 18:36:59 +0000 |
commit | 7fd72ef772f40701c2b750a94bdb773329563cc9 (patch) | |
tree | 755a7f671fb55607433fd6e1317adae227a3d570 | |
parent | aa46916ffff53f4d8fa6bd701c96da70c82b1547 (diff) | |
download | openbsd-7fd72ef772f40701c2b750a94bdb773329563cc9.tar.gz openbsd-7fd72ef772f40701c2b750a94bdb773329563cc9.tar.bz2 openbsd-7fd72ef772f40701c2b750a94bdb773329563cc9.zip |
Make sure to clean up the .d files with 'make clean'
-rw-r--r-- | src/regress/lib/libcrypto/asn1/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/asn1/Makefile b/src/regress/lib/libcrypto/asn1/Makefile index abb69cb379..3128179e90 100644 --- a/src/regress/lib/libcrypto/asn1/Makefile +++ b/src/regress/lib/libcrypto/asn1/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.3 2017/11/28 16:47:55 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.4 2018/08/30 18:36:59 tb Exp $ |
2 | 2 | ||
3 | TESTS = \ | 3 | TESTS = \ |
4 | asn1evp \ | 4 | asn1evp \ |
@@ -13,7 +13,7 @@ WARNINGS= Yes | |||
13 | LDFLAGS+= -lcrypto | 13 | LDFLAGS+= -lcrypto |
14 | CFLAGS+= -DLIBRESSL_INTERNAL -Wall -Wundef -Werror | 14 | CFLAGS+= -DLIBRESSL_INTERNAL -Wall -Wundef -Werror |
15 | 15 | ||
16 | CLEANFILES+= ${TESTS} | 16 | CLEANFILES+= ${TESTS} ${TESTS:S/$/.d/} |
17 | 17 | ||
18 | all_tests: ${TESTS} | 18 | all_tests: ${TESTS} |
19 | @for test in $>; do \ | 19 | @for test in $>; do \ |