From b222df047d91a946fc0defd0a7906635e2808ad5 Mon Sep 17 00:00:00 2001 From: Sage Vaillancourt Date: Mon, 12 Jul 2021 20:10:45 -0400 Subject: [PATCH] Only run tests if 'make' succeeded --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index e1a51eb..92cff3d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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)