summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorleo2009-03-04 05:31:51 +0000
committerleo2009-03-04 05:31:51 +0000
commit6903cc64ad7aa2115f8d7081bdfdc9eb2a857e4e (patch)
treee42f5423f49a1a379faab0a34699f6b00e148fda /Makefile
parentc189cf6e36a9978141651741568976e41a9bb123 (diff)
Added dependency.
git-svn-id: http://svn.leocad.org/tags/leocad-0.75@746 c7d43263-9d01-0410-8a33-9dba5d9f93d6
Diffstat (limited to 'Makefile')
-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: