# T should be the path to the top-level directory.
# C should be the path to the current directory.
-# Load top-level directory local configuration
-sinclude $T/Config.mak
-
# Verbosity flag (empty show nice messages, 1 be verbose)
# honour make -s flag
override V := $(if $(findstring s,$(MAKEFLAGS)),1,$V)
$(info !! Something changed: $(setup_build_dir__) \
re-building affected files...)))
+# Include the Build.mak for this directory
+include $T/Build.mak
+
+# Phony rule to make all the targets (sub-makefiles can append targets to build
+# to the $(all) variable).
+.PHONY: all
+all: $(all)
+
endif