aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ee672f0..1d86a86 100644
--- a/Makefile
+++ b/Makefile
@@ -70,7 +70,10 @@ libzahl.a: $(OBJ)
test: test.c libzahl.a
$(CC) $(LDFLAGS) $(CFLAGS) $(CPPFLAGS) -o $@ $^
+check: test
+ ./test
+
clean:
-rm -- *.o *.su *.a *.so test 2>/dev/null
-.PHONY: all clean
+.PHONY: all check clean