summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2019-02-13 23:32:08 +0100
committerTom Smeding <tom.smeding@gmail.com>2019-02-13 23:32:08 +0100
commitbc598375da7b9a20a35e958afb61dcd690d3d7b7 (patch)
tree764398251e30ae68920e53aa256d7e30b4cf55a0 /Makefile
parent6175cb1c53772cc92d91a39a254c38bdf8f64905 (diff)
Play interactively against AI
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1a1e21d..1d3addf 100644
--- a/Makefile
+++ b/Makefile
@@ -18,9 +18,9 @@ clean:
rm -f $(TARGET)
rm -rf $(OBJDIR)
-$(TARGET): $(OBJ_FILES)
+$(TARGET): $(OBJ_FILES) termio/libtermio.a
@echo LD $@
- @$(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS)
+ @$(CXX) $(CXXFLAGS) -o $@ $^ termio/libtermio.a $(LDFLAGS)
$(OBJDIR)/%.o: %.cpp
@mkdir -p $(dir $@)