To be more consistent, rename make variable INCLUDES to GLOBAL_INCLUDES. Also remove the need to put -I in front of each field, the make system will do that for you. To fix your module makefiles: -Change INCLUDES -> GLOBAL_INCLUDES -Remove -I prefix
16 lines
194 B
Makefile
16 lines
194 B
Makefile
LOCAL_DIR := $(GET_LOCAL_DIR)
|
|
|
|
GLOBAL_INCLUDES += \
|
|
$(LOCAL_DIR)/include
|
|
|
|
PLATFORM := omap3
|
|
|
|
MODULES += \
|
|
dev/pmic/twl4030
|
|
|
|
MEMSIZE := 0x08000000 # 128MB
|
|
|
|
DEFINES += \
|
|
SDRAM_SIZE=$(MEMSIZE)
|
|
|