diff options
author | tb <> | 2025-08-25 06:08:33 +0000 |
---|---|---|
committer | tb <> | 2025-08-25 06:08:33 +0000 |
commit | 8d69d0f7a170ebed7efc8c4a2097bc0d203981db (patch) | |
tree | 92ea87634b6ba85e4b2e4d1be57c037b906d7b3a /src | |
parent | cdf77193c95f3ded8f8055a93f4da239149deb49 (diff) | |
download | openbsd-8d69d0f7a170ebed7efc8c4a2097bc0d203981db.tar.gz openbsd-8d69d0f7a170ebed7efc8c4a2097bc0d203981db.tar.bz2 openbsd-8d69d0f7a170ebed7efc8c4a2097bc0d203981db.zip |
freenull: missing target deps, use -Wall -Werror like elsewhere
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libcrypto/free/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/free/Makefile b/src/regress/lib/libcrypto/free/Makefile index 21516f1172..9171393c0f 100644 --- a/src/regress/lib/libcrypto/free/Makefile +++ b/src/regress/lib/libcrypto/free/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.5 2023/04/15 14:10:09 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.6 2025/08/25 06:08:33 tb Exp $ |
2 | 2 | ||
3 | TESTS = \ | 3 | TESTS = \ |
4 | freenull | 4 | freenull |
@@ -10,9 +10,11 @@ REGRESS_TARGETS= all_tests | |||
10 | LDADD= -lcrypto | 10 | LDADD= -lcrypto |
11 | DPADD= ${LIBCRYPTO} | 11 | DPADD= ${LIBCRYPTO} |
12 | 12 | ||
13 | CFLAGS+= -Wall -Werror | ||
14 | |||
13 | CLEANFILES+= freenull.c freenull.c.body freenull.c.tmp | 15 | CLEANFILES+= freenull.c freenull.c.body freenull.c.tmp |
14 | 16 | ||
15 | freenull.c: freenull.awk ../../../../lib/libcrypto/Symbols.list | 17 | freenull.c: freenull.awk freenull.c.head freenull.c.tail ../../../../lib/libcrypto/Symbols.list |
16 | awk -f ${.CURDIR}/freenull.awk \ | 18 | awk -f ${.CURDIR}/freenull.awk \ |
17 | < ${BSDSRCDIR}/lib/libcrypto/Symbols.list > freenull.c.body | 19 | < ${BSDSRCDIR}/lib/libcrypto/Symbols.list > freenull.c.body |
18 | cat ${.CURDIR}/freenull.c.head freenull.c.body \ | 20 | cat ${.CURDIR}/freenull.c.head freenull.c.body \ |