-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "OpenSSL specified in Makefiles."
This reverts commit 80cce9a.
- Loading branch information
Showing
4 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
CXXFLAGS = -O3 -std=c++17 -Wall -Wextra $(shell pkg-config --cflags hdrbg openssl) | ||
LDFLAGS = $(shell pkg-config --libs-only-L hdrbg openssl) | ||
LDLIBS = $(shell pkg-config --libs-only-l hdrbg openssl) | ||
CXXFLAGS = -O3 -std=c++17 -Wall -Wextra $(shell pkg-config --cflags hdrbg) | ||
LDFLAGS = $(shell pkg-config --libs-only-L hdrbg) | ||
LDLIBS = $(shell pkg-config --libs-only-l hdrbg) | ||
|
||
benchmarks: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
CFLAGS = -std=c17 -O2 -Wall -Wextra $(shell pkg-config --cflags hdrbg openssl) | ||
LDFLAGS = $(shell pkg-config --libs-only-L hdrbg openssl) | ||
LDLIBS = $(shell pkg-config --libs-only-l hdrbg openssl) | ||
CFLAGS = -std=c17 -O2 -Wall -Wextra $(shell pkg-config --cflags hdrbg) | ||
LDFLAGS = $(shell pkg-config --libs-only-L hdrbg) | ||
LDLIBS = $(shell pkg-config --libs-only-l hdrbg) | ||
|
||
tests: |