From c8c6465279ef342f176bfe193614d7b6131513da Mon Sep 17 00:00:00 2001 From: Pavel Pisa Date: Wed, 16 Sep 2015 21:09:31 +0200 Subject: [PATCH] OMK Makefile.rules updated to allow specification of subdirectories in SOURCES. Signed-off-by: Pavel Pisa --- rtems-omk-template/Makefile.rules | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/rtems-omk-template/Makefile.rules b/rtems-omk-template/Makefile.rules index 5160614..00510cc 100644 --- a/rtems-omk-template/Makefile.rules +++ b/rtems-omk-template/Makefile.rules @@ -4,7 +4,7 @@ # (C) Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2013, 2015 by Michal Sojka - Czech Technical University, FEE, DCE # # Homepage: http://rtime.felk.cvut.cz/omk/ -# Version: 0.2-173-g6a298fc +# Version: 0.2-174-g15f6d83 # # The OMK build system is distributed under the GNU General Public # License. See file COPYING for details. @@ -660,6 +660,12 @@ $(foreach lib,$(lib_LIBRARIES),$(eval $(call LIBRARY_template,$(lib)))) $(foreach lib,$(shared_LIBRARIES),$(eval $(call SOLIB_template,$(lib)))) +# Create _build directories for sources in subdirectories i.e. *_SOURCES=dir/file.c +_dirs_to_create=$(filter-out ./,$(sort $(dir $(USER_SOURCES) $(SOLIB_SOURCES)))) +ifneq ($(_dirs_to_create),) +$(shell mkdir -p $(addprefix $(LOCAL_BUILD_DIR)/,$(_dirs_to_create))) +endif + # IDL compilation USER_IDLS := $(sort $(USER_IDLS)) $(foreach src,$(filter %.idl,$(USER_IDLS)),$(eval $(call COMPILE_idl_template,$(SOURCES_DIR)/$(src),$(src:%.idl=%)))) -- 2.39.2