-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,11 +1,14 @@ #!/usr/bin/make -f export TOPDIR:=$(shell pwd) include $(TOPDIR)/Vars.make +ifneq ($(wildcard $(TOPDIR)/Vars.local),) +include $(TOPDIR)/Vars.local +endif noconfig_targets := xconfig menuconfig config oldconfig randconfig \ defconfig allyesconfig allnoconfig allmodconfig \ clean-configs $(TOPDIR)/scripts/subst $(TOPDIR)/scripts/filesubst \ ipks |