Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/auriamg/macdylibbundler.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorauriamg <auria.mg@gmail.com>2021-08-01 03:30:01 +0300
committerGitHub <noreply@github.com>2021-08-01 03:30:01 +0300
commit69190453741f8f92cb4cd35ef65e6916cdb272e6 (patch)
tree7621bf3d622c499d7761f9691c50d277a8394fe5
parent886b02b372e66e79ade5107aa0fdd359546c16b1 (diff)
parentc1726c11b75b4ecc1cd765eeb8fb2f5c1547cfe4 (diff)
Merge pull request #64 from ryandesign/patch-1
Use LDFLAGS when linking
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 63964a5..df8c440 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ OBJ_FILES=$(notdir $(CPP_FILES:.cpp=.o))
all: dylibbundler
dylibbundler: $(OBJ_FILES)
- $(CXX) $(CXXFLAGS) -o $@ $(OBJ_FILES)
+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $(OBJ_FILES)
%.o: src/%.cpp
$(CXX) -c $(CXXFLAGS) -I./src $< -o $@