common/makefiles/IdlCompilation.gmk
changeset 15166 b8af1d981a80
parent 15051 d32ad37472e6
child 15392 28d8aefeedd3
equal deleted inserted replaced
15165:2d74b1d7456b 15166:b8af1d981a80
    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))