aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4a8d66f..2694891 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,10 @@ $(BUILD_DIR)/%.o: $(SRC_DIR)/%.s
@mkdir -p $(dir $@)
$(AS) $(ASFLAGS) $< -o $@
+deploy: $(TARGET)
+ tar -czvf $(TARGET).tar.gz $(TARGET) README.md
+
clean:
rm -r $(BUILD_DIR) $(TARGET)
-.PHONY: all clean
+.PHONY: all clean deploy