diff options
-rw-r--r-- | skype/Makefile | 3 | ||||
-rw-r--r-- | skype/t/Makefile | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/skype/Makefile b/skype/Makefile index ec9a8343..4f7a036d 100644 --- a/skype/Makefile +++ b/skype/Makefile @@ -62,6 +62,9 @@ autoclean: distclean check: perl checkpatch.pl --no-tree --file skype.c +test: all + $(MAKE) -C t/ all + dist: git archive --format=tar --prefix=bitlbee-skype-$(VERSION)/ HEAD | tar xf - mkdir -p bitlbee-skype-$(VERSION) diff --git a/skype/t/Makefile b/skype/t/Makefile index be960f24..9c5e95f9 100644 --- a/skype/t/Makefile +++ b/skype/t/Makefile @@ -9,7 +9,7 @@ tests := $(patsubst %.test,%,$(testfiles)) .PHONY: $(tests) -default: $(tests) +all: $(tests) @echo "passed $$(echo $(testfiles)|wc -w) tests." $(tests): % : %.test |