Updated Travis build script.

This commit is contained in:
Podkopaev Anton 2018-02-19 17:19:00 +03:00
parent 3a1e425fa0
commit 0a1922520b
2 changed files with 7 additions and 2 deletions

View file

@ -1,10 +1,15 @@
SHELL := /bin/bash
.PHONY: all
.PHONY: all regression
all:
pushd src && make && popd
install: ;
regression:
pushd regression && ./test.sh && popd
clean:
pushd src && make clean && popd