diff options
author | Alexey Neyman <stilor@att.net> | 2018-02-09 22:38:37 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2018-02-09 22:38:37 -0800 |
commit | a624244b1525e71489e1e325cc36d8890996c566 (patch) | |
tree | 88ea8d9feba58b879b83f6b983c4dc7345a8a201 /kconfig | |
parent | 04d910b8267856b345db93a5395212c4f7cd9199 (diff) | |
download | crosstool-ng-a624244b1525e71489e1e325cc36d8890996c566.tar.gz crosstool-ng-a624244b1525e71489e1e325cc36d8890996c566.tar.bz2 crosstool-ng-a624244b1525e71489e1e325cc36d8890996c566.zip |
Make defconfig (and a bunch of other targets) phony
Otherwise, a file named `defconfig` (which is, ironically, the default name
for the default config expected by this very makefile) prevents the defconfig
target from being run.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'kconfig')
-rw-r--r-- | kconfig/kconfig.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kconfig/kconfig.mk b/kconfig/kconfig.mk index ec0cd8a2..c489c724 100644 --- a/kconfig/kconfig.mk +++ b/kconfig/kconfig.mk @@ -16,6 +16,8 @@ NCONF := $(CT_LIB_DIR)/kconfig/nconf # Used by conf/mconf/nconf to find the .in files export srctree=$(CT_LIB_DIR) +.PHONY: menuconfig nconfig oldconfig savedefconfig defconfig + menuconfig: @$(CT_ECHO) " CONF $@" $(SILENT)$(MCONF) $(KCONFIG_TOP) |