Typehinting merge #50

Merged
belliash merged 298 commits from typehinting into master 2019-04-17 11:27:52 +02:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 4db8ec02cd - Show all commits

View File

@ -7,4 +7,4 @@ pipeline:
- make install - make install
step: test step: test
commands: commands:
- make test - make tests

View File

@ -117,7 +117,7 @@ TESTS := $(subst .$(TEST_EXT),.test,$(wildcard $(TEST_DIR)/*.$(TEST_EXT)))
.SUFFIXES: .SUFFIXES:
.PHONY: clean debug install release style test .PHONY: clean debug install release style tests
debug: export CFLAGS := $(CFLAGS) $(DCFLAGS) debug: export CFLAGS := $(CFLAGS) $(DCFLAGS)
debug: engine sapi modules debug: engine sapi modules
@ -183,4 +183,4 @@ install: engine modules sapi
style: style:
astyle $(ASTYLE_FLAGS) --recursive ./*.c,*.h astyle $(ASTYLE_FLAGS) --recursive ./*.c,*.h
test: $(TESTS) tests: $(TESTS)