From 6faa2ea36f0d0e32d0460e375e2936bfd662e706 Mon Sep 17 00:00:00 2001 From: Vlasta Vesely Date: Tue, 28 Jan 2020 19:13:24 +0100 Subject: [PATCH] Makefile: run the integration tests when running the test target --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 023ccec..4c84efc 100644 --- a/Makefile +++ b/Makefile @@ -15,8 +15,9 @@ all: iast doc/iast.1.gz iast: main.o $(OBJECTS) $(CC) $^ -o $@ $(CFLAGS) -test: tests/test +test: iast tests/test tests/test + sh tests/integration.sh %.o: %.c $(CC) -MMD -MP -c $< -o $@ $(CFLAGS)