add gitignore, makefile
This commit is contained in:
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
*.DS_Store
|
||||
*.zip
|
||||
*.sha1
|
9
Makefile
Normal file
9
Makefile
Normal 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 $< > $@
|
Reference in New Issue
Block a user