diff options
author | Your Name <you@example.com> | 2022-02-22 11:55:42 -0500 |
---|---|---|
committer | Your Name <you@example.com> | 2022-02-22 11:55:42 -0500 |
commit | 2224cc3a999db3e582cfc140ec176818d3a50c68 (patch) | |
tree | e600098f90a82c0ce6896b9b1ec39d75d149a754 /src/test | |
parent | 2b6be2d144250dffb364d429c39a563e8430f14d (diff) | |
download | libbible-2224cc3a999db3e582cfc140ec176818d3a50c68.tar.gz libbible-2224cc3a999db3e582cfc140ec176818d3a50c68.tar.bz2 libbible-2224cc3a999db3e582cfc140ec176818d3a50c68.zip |
Added soname to library
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/test/Makefile b/src/test/Makefile index 1f8bc8b..422cc03 100644 --- a/src/test/Makefile +++ b/src/test/Makefile @@ -1,13 +1,11 @@ -LIBS = sword minizip -override CXXFLAGS += -MMD -Wall -fPIC -std=c++20 `pkg-config $(LIBS) --cflags` -override LDFLAGS += -lstdc++fs `pkg-config $(LIBS) --libs` -lcppunit ../../libbible.so +override LDFLAGS += -lcppunit ../lib/libbible.so SOURCES = $(wildcard *.cc) OBJECTS = $(SOURCES:.cc=.o) DEPS = $(OBJECTS:.o=.d) TEST = testLibbible $(TEST): $(OBJECTS) - $(CXX) $(OBJECTS) -o $@ $(LDFLAGS) + $(CXX) $^ -o $@ $(LDFLAGS) -include $(DEPS) |