add gitignore, makefile

This commit is contained in:
Victoria Fierce 2022-09-18 11:34:55 +02:00
parent 31bb46bf9c
commit b5a3844381
2 changed files with 12 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.DS_Store
*.zip
*.sha1

9
Makefile Normal file
View File

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