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 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 $@)