7e73693898
This fixes a long-standing bug where build directories sometimes expanded many levels deeper than they should have. Component names can now no longer contains slashes (ie the component name for 'extras/i2c' is now just 'i2c')
10 lines
259 B
Makefile
10 lines
259 B
Makefile
# Component makefile for extras/i2c
|
|
|
|
# expected anyone using i2c driver includes it as 'i2c/i2c.h'
|
|
INC_DIRS += $(i2c_ROOT)..
|
|
|
|
# args for passing into compile rule generation
|
|
i2c_INC_DIR =
|
|
i2c_SRC_DIR = $(i2c_ROOT)
|
|
|
|
$(eval $(call component_compile_rules,i2c))
|