Only run tests if 'make' succeeded

This commit is contained in:
Sage Vaillancourt 2021-07-12 20:10:45 -04:00
parent 77cb35f961
commit b222df047d
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ SCRIPTDIR ?= /usr/local/share/pebblisp
GCC_COM ?= gcc -g -O0 -Wall -o $(exe) -D STANDALONE -DSCRIPTDIR=\"$(SCRIPTDIR)\"
all:
$(GCC_COM) $(files) && echo; ./tests.sh
$(GCC_COM) $(files) && echo && ./tests.sh
notest:
$(GCC_COM) $(files)