Makefile: run the integration tests when running the test target
This commit is contained in:
parent
be3a9a4cf8
commit
6faa2ea36f
1 changed files with 2 additions and 1 deletions
3
Makefile
3
Makefile
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue