Add Makefile and a couple of test HH's
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
# Variable definitions
|
||||
VERSION = 0.12
|
||||
DATE = $(shell date +%Y%m%d)
|
||||
|
||||
all:
|
||||
@echo "Usage:"
|
||||
@echo " make snapshot - Tags the repository with $(VERSION)-$(DATE) and creates a tarball from that"
|
||||
|
||||
snapshot:
|
||||
git tag $(VERSION)-$(DATE)
|
||||
git archive --prefix=fpdb-$(VERSION)-$(DATE)/ $(VERSION)-$(DATE) | gzip -9 > ../fpdb-$(VERSION)-$(DATE).tar.gz
|
||||
Reference in New Issue
Block a user