From e640f46211c31c9badef9bc8697b81cb5a955fd1 Mon Sep 17 00:00:00 2001 From: Nathan R Date: Thu, 5 Aug 2021 16:50:01 +0200 Subject: [PATCH] updated Makefile with everything working --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 15faea1..e06c2a2 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ output : all .FORCE ./$(MAIN) < $(MAIN)-input.txt > $(MAIN)-output.out diff $(MAIN)-input.txt $(MAIN)-output.out -test : output +test : all .FORCE ./dotest both : all .FORCE @@ -46,6 +46,9 @@ tidy : .FORCE cleansed : .FORCE rm -f debug.out -spotless : clean tidy cleansed +purified : .FORCE + rm -rf tests-c/*.out + +spotless : clean tidy cleansed purified .FORCE :