From 22b5a157b0f3f3054cacde5a40bf6914a806a7fd Mon Sep 17 00:00:00 2001 From: Wichert Akkerman Date: Mon, 3 Dec 2012 16:05:24 +0100 Subject: [PATCH] Remove execute results --- projects/SelfTest/Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/projects/SelfTest/Makefile b/projects/SelfTest/Makefile index 1ce5ca41..01e21634 100644 --- a/projects/SelfTest/Makefile +++ b/projects/SelfTest/Makefile @@ -9,10 +9,7 @@ CXXFLAGS = -I../../include main: $(OBJECTS) $(CXX) -o $@ $^ -junit: main - -./main -r junit > junit.xml - clean: - rm -f $(OBJECTS) main junit.xml + rm -f $(OBJECTS) main -.PHONY: main junit +.PHONY: main clean