summaryrefslogtreecommitdiff
path: root/config/config.mk
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-04-23 06:33:36 (GMT)
committerAlexey Neyman <stilor@att.net>2017-04-23 06:33:36 (GMT)
commitc9dad337289153ee70d4ed264cf628f22f6ec2bb (patch)
tree4aed6b45c9b955047f16cc754a8588af840aca11 /config/config.mk
parent105e4b59b7989e9898795273e4064791fdfa056c (diff)
Use config from the install location
... no need to create a local symlink. Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config/config.mk')
-rw-r--r--config/config.mk27
1 files changed, 0 insertions, 27 deletions
diff --git a/config/config.mk b/config/config.mk
deleted file mode 100644
index e0ca3d2..0000000
--- a/config/config.mk
+++ /dev/null
@@ -1,27 +0,0 @@
-#-----------------------------------------------------------
-# List all config files
-
-# The top-level config file to be used be configurators
-# We need it to savedefconfig in scripts/saveSample.sh
-export KCONFIG_TOP = config/config.in
-
-# Build the list of all source config files
-STATIC_CONFIG_FILES = $(patsubst $(CT_LIB_DIR)/%,%,$(shell find $(CT_LIB_DIR)/config -type f \( -name '*.in' -o -name '*.in.2' \) 2>/dev/null))
-# ... and how to access them:
-$(STATIC_CONFIG_FILES): config
-
-# Helper entry for the configurators
-PHONY += config_files
-config_files: $(STATIC_CONFIG_FILES) $(GEN_CONFIG_FILES)
-
-# Where to access to the source config files from
-config:
- @$(CT_ECHO) " LN config"
- $(SILENT)ln -s $(CT_LIB_DIR)/config config
-
-#-----------------------------------------------------------
-# Cleaning up the mess...
-
-clean::
- @$(CT_ECHO) " CLEAN config"
- $(SILENT)rm -f config 2>/dev/null || true