diff --git a/core/Makefile b/core/Makefile index 687a7f9f..d0e4aa00 100644 --- a/core/Makefile +++ b/core/Makefile @@ -9,6 +9,7 @@ HDRS=$(SRCS:.cpp=.h) OBJS=$(SRCS:.cpp=.o) sip/sip_stack.a DEPS=$(SRCS:.cpp=.d) $(NAME).d AUDIO_FILES=$(notdir $(wildcard wav/*.wav)) +TEST_DIR=tests .PHONY: all all: ../Makefile.defs @@ -36,6 +37,12 @@ modules: -@echo "making core modules" -@cd $(PLUGIN_DIR); $(MAKE) modules +.PHONY: test +test: + -@echo "" + -@echo "making tests" + -@cd $(TEST_DIR); $(MAKE) + .PHONY: deps deps: $(DEPS)