aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYour Name <you@example.com>2022-02-23 15:03:18 -0500
committerYour Name <you@example.com>2022-02-23 15:03:18 -0500
commit733e8e6ec26eb10bef4c5de50da31adbf28052ce (patch)
tree65d218c87616eed9405228dc86c8fd8287931784
parent11f6903b4bac951d527e57e0077f719b602c7a6e (diff)
downloadlibbible-733e8e6ec26eb10bef4c5de50da31adbf28052ce.tar.gz
libbible-733e8e6ec26eb10bef4c5de50da31adbf28052ce.tar.bz2
libbible-733e8e6ec26eb10bef4c5de50da31adbf28052ce.zip
Fixed issue with packaging on arch linux AUR
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1b88242..e064f7a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,5 @@
export version = 1.0.2
override CXXFLAGS += -MMD -Wall -std=c++20
-override LDFLAGS += -Lsrc/lib -lbible
SOURCES = $(wildcard src/*.cc)
OBJECTS = $(SOURCES:.cc=.o)
DEPS = $(OBJECTS:.o=.d)
@@ -12,7 +11,7 @@ bindir ?= $(exec_prefix)/bin
includedir ?= $(prefix)/include
$(EXECUTABLE): $(OBJECTS) libbible
- $(CXX) $(OBJECTS) -o $@ $(LDFLAGS)
+ $(CXX) $(OBJECTS) -o $@ $(LDFLAGS) -Lsrc/lib -lbible
-include $(DEPS)