summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c9028bc..8342fcb 100644
--- a/Makefile
+++ b/Makefile
@@ -36,10 +36,10 @@ all: $(BIN)
static: bin/leocad.static
bin/leocad: $(OBJ) bin
- $(CXX) -o $@ $(OBJ) $(LIBS)
+ $(CXX) -o $@ $(OBJ) $(LIBS) $(LDFLAGS)
bin/leocad.static: $(OBJ) bin
- $(CXX) -static -o $@ $(OBJ) $(LIBS)
+ $(CXX) -static -o $@ $(OBJ) $(LIBS) $(LDFLAGS)
bin:
mkdir bin