summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 95f3c1e..b900387 100644
--- a/Makefile
+++ b/Makefile
@@ -31,9 +31,9 @@ clean:
rm -f $(TEST_FILES)
$(TEST_FILES): $(TARGET) $(TEST_SOURCES) $(HEADERS)
- @printf "Running '%s'..." $@
+ @printf "Running %-40s%s " '`$@`'
@$(CC) $(CFLAGS) -o $@ $(addsuffix .c, $@) $(OBJ)
- @if ./$@ ; then printf "\t\tPASS\n";else printf "\t\tFAIL: exit value: %d\n" $$?; fi
+ @if ./$@ ; then printf "PASS\n";else printf "FAIL: exit value: %d\n" $$?; fi
check: test
test: $(TEST_FILES)