summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 8342fcb..91b604b 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ CPPFLAGS += $(patsubst %,-I%,$(MODULES)) $(OS)
CPPFLAGS += -g
### extra libraries if required
-LIBS :=
+LIBS :=
### each module will add to this
SRC :=
@@ -35,10 +35,10 @@ all: $(BIN)
static: bin/leocad.static
-bin/leocad: $(OBJ) bin
+bin/leocad: $(OBJ) bin Makefile
$(CXX) -o $@ $(OBJ) $(LIBS) $(LDFLAGS)
-bin/leocad.static: $(OBJ) bin
+bin/leocad.static: $(OBJ) bin Makefile
$(CXX) -static -o $@ $(OBJ) $(LIBS) $(LDFLAGS)
bin: