tar+zip in makefile, LICENSE update

This commit is contained in:
2024-04-11 18:40:11 +02:00
parent d99a77f5c7
commit 3eea4b0199
2 changed files with 10 additions and 1 deletions

View File

@ -55,3 +55,12 @@ $(BUILD_DIR)/ram.yy.c: src/ram.l
clean:
rm -rf $(BUILD_DIR)
rm -rf $(TARGET_DIR)
rm -f *.tar.gz
rm -f *.zip
FILES := README.md LICENSE Makefile src/
tar:
tar -czf ram.tar.gz $(FILES)
zip:
zip -r ram.zip $(FILES)