diff options
author | tb <> | 2023-07-15 23:40:46 +0000 |
---|---|---|
committer | tb <> | 2023-07-15 23:40:46 +0000 |
commit | 002b3063d86e5feaaf936ce82467233e5660ef12 (patch) | |
tree | f72dc6dfd3d8ff487e224afe75ab907523c9dc19 /src/regress/lib | |
parent | a3de466a9035cfd69b15a0f9f811bc3d390abac0 (diff) | |
download | openbsd-002b3063d86e5feaaf936ce82467233e5660ef12.tar.gz openbsd-002b3063d86e5feaaf936ce82467233e5660ef12.tar.bz2 openbsd-002b3063d86e5feaaf936ce82467233e5660ef12.zip |
fix include directive - this is make, not C
Diffstat (limited to 'src/regress/lib')
-rw-r--r-- | src/regress/lib/libssl/symbols/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libssl/symbols/Makefile b/src/regress/lib/libssl/symbols/Makefile index cc7f1d251c..d500dfcd0a 100644 --- a/src/regress/lib/libssl/symbols/Makefile +++ b/src/regress/lib/libssl/symbols/Makefile | |||
@@ -1,8 +1,8 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1.1.1 2023/07/15 19:29:44 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2023/07/15 23:40:46 tb Exp $ |
2 | 2 | ||
3 | PROG = symbols | 3 | PROG = symbols |
4 | 4 | ||
5 | #include <bsd.own.mk> | 5 | .include <bsd.own.mk> |
6 | 6 | ||
7 | DPADD= ${LIBCRYPTO} ${LIBSSL} | 7 | DPADD= ${LIBCRYPTO} ${LIBSSL} |
8 | LDFLAGS+= -lcrypto -lssl | 8 | LDFLAGS+= -lcrypto -lssl |