Only run tests if 'make' succeeded
This commit is contained in:
parent
77cb35f961
commit
b222df047d
|
@ -7,7 +7,7 @@ SCRIPTDIR ?= /usr/local/share/pebblisp
|
||||||
GCC_COM ?= gcc -g -O0 -Wall -o $(exe) -D STANDALONE -DSCRIPTDIR=\"$(SCRIPTDIR)\"
|
GCC_COM ?= gcc -g -O0 -Wall -o $(exe) -D STANDALONE -DSCRIPTDIR=\"$(SCRIPTDIR)\"
|
||||||
|
|
||||||
all:
|
all:
|
||||||
$(GCC_COM) $(files) && echo; ./tests.sh
|
$(GCC_COM) $(files) && echo && ./tests.sh
|
||||||
|
|
||||||
notest:
|
notest:
|
||||||
$(GCC_COM) $(files)
|
$(GCC_COM) $(files)
|
||||||
|
|
Loading…
Reference in New Issue