Makefile: run the integration tests when running the test target

This commit is contained in:
Vlasta Vesely 2020-01-28 19:13:24 +01:00
parent be3a9a4cf8
commit 6faa2ea36f
No known key found for this signature in database
GPG key ID: EB0E649DC0DFCC22

View file

@ -15,8 +15,9 @@ all: iast doc/iast.1.gz
iast: main.o $(OBJECTS) iast: main.o $(OBJECTS)
$(CC) $^ -o $@ $(CFLAGS) $(CC) $^ -o $@ $(CFLAGS)
test: tests/test test: iast tests/test
tests/test tests/test
sh tests/integration.sh
%.o: %.c %.o: %.c
$(CC) -MMD -MP -c $< -o $@ $(CFLAGS) $(CC) -MMD -MP -c $< -o $@ $(CFLAGS)