Add a new makefile target that does everything needed for jenkins.

We should have as much of the logic of how the CI tests are run in source
control as possible, so that's what this target is for.  Besides this, jenkins
just runs a "git clean" first.
This commit is contained in:
Chris Lumens 2015-07-21 16:24:21 -04:00
parent 52b7c4dd06
commit a127bef9d7
1 changed files with 2 additions and 0 deletions

View File

@ -50,3 +50,5 @@ local:
@dir=$$PWD; cd /var/tmp; tar --gzip -cSpf $$dir/$(PKGNAME)-$(VERSION).tar.gz $(PKGNAME)-$(VERSION)
@rm -rf /var/tmp/$(PKGNAME)-$(VERSION)
@echo "The archive is in $(PKGNAME)-$(VERSION).tar.gz"
ci: check