2015-08-04 03:42:21 +08:00
|
|
|
# vim: filetype=make
|
|
|
|
|
2015-05-10 04:39:56 +08:00
|
|
|
PROJECT_BASE ?= $(shell pwd)
|
2015-08-23 02:40:43 +08:00
|
|
|
O ?= $(PROJECT_BASE)/outdir
|
|
|
|
|
2015-08-02 22:05:07 +08:00
|
|
|
ARCH ?= x86
|
2015-02-22 06:05:51 +08:00
|
|
|
|
2015-07-23 07:15:43 +08:00
|
|
|
# Turn O into an absolute path; we call the main Kbuild with $(MAKE) -C
|
|
|
|
# which changes the working directory, relative paths don't work right.
|
|
|
|
# Need to create the directory first to make readlink happy
|
|
|
|
$(shell mkdir -p $(O))
|
|
|
|
override O := $(shell readlink -f $(O))
|
2015-06-02 00:48:10 +08:00
|
|
|
|
2015-06-06 04:24:46 +08:00
|
|
|
export ARCH MDEF_FILE QEMU_EXTRA_FLAGS PROJECT_BASE
|
2015-05-06 06:21:55 +08:00
|
|
|
|
2015-08-23 02:40:43 +08:00
|
|
|
# FIXME: Simplify this, very ugly
|
2015-07-15 05:22:18 +08:00
|
|
|
ifdef PLATFORM_CONFIG
|
|
|
|
ifndef KERNEL_TYPE
|
|
|
|
$(error KERNEL_TYPE is not defined! Set it to either micro or nano)
|
|
|
|
endif
|
2015-08-04 03:42:21 +08:00
|
|
|
ifndef KBUILD_DEFCONFIG
|
2015-07-15 05:22:18 +08:00
|
|
|
KBUILD_DEFCONFIG=$(KERNEL_TYPE)_$(PLATFORM_CONFIG)_defconfig
|
2015-08-04 03:42:21 +08:00
|
|
|
KBUILD_DEFCONFIG_PATH=$(ZEPHYR_BASE)/arch/$(ARCH)/configs/$(KBUILD_DEFCONFIG)
|
|
|
|
else
|
|
|
|
KBUILD_DEFCONFIG_PATH=$(KBUILD_DEFCONFIG)
|
|
|
|
endif
|
2015-07-15 05:22:18 +08:00
|
|
|
export KBUILD_DEFCONFIG
|
|
|
|
endif
|
|
|
|
|
2015-07-18 03:03:52 +08:00
|
|
|
SOURCE_DIR ?= $(PROJECT_BASE)/src/
|
|
|
|
# Kbuild doesn't work correctly if this is an absolute path
|
2015-08-23 02:40:43 +08:00
|
|
|
# FIXME Do not depend on python
|
2015-07-30 04:21:49 +08:00
|
|
|
override SOURCE_DIR := $(shell python -c "import os.path; print(\"%s\" % os.path.relpath(os.path.realpath('$(SOURCE_DIR)'), os.path.realpath('$(ZEPHYR_BASE)')))")/
|
2015-05-10 19:59:05 +08:00
|
|
|
export SOURCE_DIR
|
2015-05-22 00:08:16 +08:00
|
|
|
|
2015-08-23 02:40:43 +08:00
|
|
|
|
2015-02-22 06:05:51 +08:00
|
|
|
|
2015-05-27 05:50:44 +08:00
|
|
|
ifeq ("$(origin V)", "command line")
|
|
|
|
KBUILD_VERBOSE = $(V)
|
|
|
|
endif
|
|
|
|
ifndef KBUILD_VERBOSE
|
|
|
|
KBUILD_VERBOSE = 0
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(KBUILD_VERBOSE),1)
|
|
|
|
Q =
|
|
|
|
S =
|
|
|
|
else
|
|
|
|
Q = @
|
|
|
|
S = -s
|
|
|
|
endif
|
|
|
|
|
2015-08-23 02:40:43 +08:00
|
|
|
zephyrmake = @$(MAKE) -C $(ZEPHYR_BASE) O=$(1) CFLAGS="$(CFLAGS)" \
|
|
|
|
PROJECT=$(PROJECT_BASE) SOURCE_DIR=$(SOURCE_DIR) $(2)
|
2015-02-22 06:05:51 +08:00
|
|
|
|
2015-08-29 03:42:03 +08:00
|
|
|
DOTCONFIG = $(O)/.config
|
|
|
|
|
|
|
|
all: $(DOTCONFIG)
|
2015-08-23 02:40:43 +08:00
|
|
|
$(Q)$(call zephyrmake,$(O),$@)
|
2015-02-22 06:05:51 +08:00
|
|
|
|
2015-08-29 03:42:03 +08:00
|
|
|
qemu: $(DOTCONFIG)
|
2015-08-23 02:40:43 +08:00
|
|
|
$(Q)$(call zephyrmake,$(O),$@)
|
2015-05-06 06:21:55 +08:00
|
|
|
|
2015-08-29 03:42:03 +08:00
|
|
|
# Catch all
|
|
|
|
%:
|
|
|
|
$(Q)$(call zephyrmake,$(O),$@)
|
2015-06-06 00:08:43 +08:00
|
|
|
|
2015-08-29 03:42:03 +08:00
|
|
|
$(DOTCONFIG): $(CONF_FILE)
|
2015-08-29 02:22:29 +08:00
|
|
|
$(Q)$(CONFIG_SHELL) $(ZEPHYR_BASE)/scripts/kconfig/merge_config.sh \
|
|
|
|
-q -m -O $(O) $(KBUILD_DEFCONFIG_PATH) $<
|
2015-06-06 10:46:00 +08:00
|
|
|
$(Q)yes "" | $(MAKE) $(S) -C $(ZEPHYR_BASE) O=$(O) \
|
2015-07-15 04:44:42 +08:00
|
|
|
PROJECT=$(PROJECT_BASE) oldconfig
|
2015-08-23 02:40:43 +08:00
|
|
|
|
|
|
|
pristine:
|
|
|
|
$(Q)rm -rf $(O)
|
2015-05-06 06:21:55 +08:00
|
|
|
|
2015-08-29 02:22:29 +08:00
|
|
|
PHONY += FORCE
|
|
|
|
FORCE:
|
2015-08-15 00:21:36 +08:00
|
|
|
|
2015-02-22 06:05:51 +08:00
|
|
|
|
|
|
|
.PHONY: $(PHONY)
|