summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 60bce3d..b54f4c9 100644
--- a/Makefile
+++ b/Makefile
@@ -71,7 +71,15 @@ $(VERSION_HDR): version_info.mk
echo "#define VERSION_RELEASE \"$(VERSION_RELEASE)\"" >> $$hdr; \
echo "#endif" >> $$hdr;
-$(SUBDIRS_BUILD): $(VERSION_HDR) $(CONFIGS)
+src: $(VERSION_HDR) $(CONFIGS)
+ @echo "INFO: building in directory $@/ ..."
+ @$(MAKE) -s -C $@
+
+tests: src
+ @echo "INFO: building in directory $@/ ..."
+ @$(MAKE) -s -C $@
+
+tools: src
@echo "INFO: building in directory $@/ ..."
@$(MAKE) -s -C $@