common/makefiles/IdlCompilation.gmk

changeset 557
d2c1f80118de
parent 494
e64f2cb57d05
child 606
6e296219633d
equal deleted inserted replaced
556:77f062a41850 557:d2c1f80118de
85 85
86 # Remove any relative addressing in the paths. 86 # Remove any relative addressing in the paths.
87 $1_SRC := $$(abspath $$($1_SRC)) 87 $1_SRC := $$(abspath $$($1_SRC))
88 $1_BIN := $$(abspath $$($1_BIN)) 88 $1_BIN := $$(abspath $$($1_BIN))
89 # Find all existing java files and existing class files. 89 # Find all existing java files and existing class files.
90 $$(shell $(MKDIR) -p $$($1_SRC) $$($1_BIN)) 90 $$(eval $$(call MakeDir,$$($1_BIN)))
91 $1_SRCS := $$(shell find $$($1_SRC) -name "*.idl") 91 $1_SRCS := $$(shell find $$($1_SRC) -name "*.idl")
92 $1_BINS := $$(shell find $$($1_BIN) -name "*.java") 92 $1_BINS := $$(shell find $$($1_BIN) -name "*.java")
93 # Prepend the source/bin path to the filter expressions. 93 # Prepend the source/bin path to the filter expressions.
94 $1_SRC_INCLUDES := $$(addprefix $$($1_SRC)/,$$($1_INCLUDES)) 94 $1_SRC_INCLUDES := $$(addprefix $$($1_SRC)/,$$($1_INCLUDES))
95 $1_SRC_EXCLUDES := $$(addprefix $$($1_SRC)/,$$($1_EXCLUDES)) 95 $1_SRC_EXCLUDES := $$(addprefix $$($1_SRC)/,$$($1_EXCLUDES))

mercurial