Skip to content

Commit

Permalink
Revert "OpenSSL specified in Makefiles."
Browse files Browse the repository at this point in the history
This reverts commit 80cce9a.
  • Loading branch information
tfpf committed Oct 1, 2023
1 parent 80cce9a commit 7b6c0cb
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions benchmarks/Makefile
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:
6 changes: 3 additions & 3 deletions examples/C++/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CFLAGS = $(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 = $(shell pkg-config --cflags hdrbg)
LDFLAGS = $(shell pkg-config --libs-only-L hdrbg)
LDLIBS = $(shell pkg-config --libs-only-l hdrbg)

Sources = $(wildcard *.cc)
Executables = $(Sources:.cc=)
Expand Down
6 changes: 3 additions & 3 deletions examples/C/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CFLAGS = $(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 = $(shell pkg-config --cflags hdrbg)
LDFLAGS = $(shell pkg-config --libs-only-L hdrbg)
LDLIBS = $(shell pkg-config --libs-only-l hdrbg)

Sources = $(wildcard *.c)
Executables = $(Sources:.c=)
Expand Down
6 changes: 3 additions & 3 deletions tests/Makefile
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:

0 comments on commit 7b6c0cb

Please sign in to comment.