diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,7 @@ .PHONY: all help parse_kconfig write_config build run test clean clean_linux clean_buildroot mlinux mbuildroot +include .conf.mk + all: parse_kconfig write_config help: @@ -24,7 +26,7 @@ mbuildroot: $(MAKE) -C scripts/buildroot menuconfig mlinux: - $(MAKE) -C linux menuconfig + ARCH=$(SRCARCH) $(MAKE) -C linux menuconfig test: build/initram.gz @ #TODO @@ -48,6 +50,9 @@ clean_buildroot: ####################################### +.conf.mk: conf.py + scripts/confmk.py + parse_kconfig: @$(MAKE) -C scripts/parse_kconfig/ |