diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-03-17 07:04:46 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-03-20 10:08:15 +0100 |
commit | 64828a12a04a6d18e84e7a0c286423033c6d41c7 (patch) | |
tree | 3b17143edde7701d2b04665a7858ddaa71eaf6bc /test/Makefile | |
parent | 6bfb450b58b778825e2c593c929b8ad4b8e294fb (diff) |
test: fix non-O checking
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/test/Makefile b/test/Makefile index 0c7b9151d..a861d4203 100644 --- a/test/Makefile +++ b/test/Makefile @@ -63,13 +63,16 @@ subdirs_run: $(patsubst %, _dirrun_%, $(DIRS)) subdirs_clean: $(patsubst %, _dirclean_%, $(ALL_SUBDIRS)) $(patsubst %, _dir_%, $(DIRS)) : dummy - $(Q)$(MAKE) -C $(patsubst _dir_%, %, $@) + $(Q)$(MAKE) -C $(patsubst _dir_%, %, $@) \ + KCONFIG_CONFIG=$(__ABS_KCONFIG_CONFIG) $(patsubst %, _dirrun_%, $(DIRS)) : dummy - $(Q)$(MAKE) -C $(patsubst _dirrun_%, %, $@) run + $(Q)$(MAKE) -C $(patsubst _dirrun_%, %, $@) run \ + KCONFIG_CONFIG=$(__ABS_KCONFIG_CONFIG) $(patsubst %, _dircompile_%, $(DIRS)) : dummy - $(Q)$(MAKE) -C $(patsubst _dircompile_%, %, $@) compile + $(Q)$(MAKE) -C $(patsubst _dircompile_%, %, $@) compile \ + KCONFIG_CONFIG=$(__ABS_KCONFIG_CONFIG) $(patsubst %, _dirclean_%, $(ALL_SUBDIRS)) : dummy $(Q)$(MAKE) -C $(patsubst _dirclean_%, %, $@) clean |