diff options
author | Your Name <you@example.com> | 2022-02-23 14:46:21 -0500 |
---|---|---|
committer | Your Name <you@example.com> | 2022-02-23 14:46:21 -0500 |
commit | 11f6903b4bac951d527e57e0077f719b602c7a6e (patch) | |
tree | e3eb135850454776288188b8225156bc314c01bf /src/lib | |
parent | f0ffaa2e3db4498b4cb737e570d0db80c05fba50 (diff) | |
download | libbible-11f6903b4bac951d527e57e0077f719b602c7a6e.tar.gz libbible-11f6903b4bac951d527e57e0077f719b602c7a6e.tar.bz2 libbible-11f6903b4bac951d527e57e0077f719b602c7a6e.zip |
Fixed issue with override and export on same variable
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Makefile b/src/lib/Makefile index 8084d3f..4f0d2cf 100644 --- a/src/lib/Makefile +++ b/src/lib/Makefile @@ -1,5 +1,5 @@ LIBS = sword minizip -override CXXFLAGS += -fPIC `pkg-config $(LIBS) --cflags` +override CXXFLAGS += -MMD -Wall -std=c++20 -fPIC `pkg-config $(LIBS) --cflags` override LDFLAGS += -lstdc++fs `pkg-config $(LIBS) --libs` SOURCES = $(wildcard *.cc) OBJECTS = $(SOURCES:.cc=.o) |