From b5a38443818e542fc9046d5d52437cc7d96ac72b Mon Sep 17 00:00:00 2001 From: Victoria Fierce Date: Sun, 18 Sep 2022 11:34:55 +0200 Subject: [PATCH] add gitignore, makefile --- .gitignore | 3 +++ Makefile | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e81beda --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.DS_Store +*.zip +*.sha1 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9cbdbad --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +.PHONY: all + +all: malloc-data-1.0.zip malloc-data-1.0.zip.sha1 + +malloc-data-1.0.zip: pack.mcmeta + zip -r malloc-data-1.0.zip pack.mcmeta data + +malloc-data-1.0.zip.sha1: malloc-data-1.0.zip + sha1sum $< > $@