46 lines
1.3 KiB
Makefile
46 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2016 The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
DELIVERABLES = $(APP).bin
|
|
LKR = os/platform/$(PLATFORM)/lkr/native.extra.lkr
|
|
|
|
FLAGS += -I. -fno-unwind-tables -fstack-reuse=all -ffunction-sections -fdata-sections -m32
|
|
FLAGS += -Wl,-T $(LKR) -Wl,--gc-sections
|
|
|
|
|
|
#platform drivers
|
|
SRCS += os/platform/$(PLATFORM)/platform.c \
|
|
os/platform/$(PLATFORM)/i2c.c \
|
|
os/platform/$(PLATFORM)/spi.c \
|
|
os/platform/$(PLATFORM)/rtc.c \
|
|
os/platform/$(PLATFORM)/hostIntf.c
|
|
|
|
#extra deps
|
|
DEPS += $(wildcard os/platform/$(PLATFORM)/inc/plat/*.h)
|
|
DEPS += $(LKR)
|
|
|
|
#platform flags
|
|
FLAGS += -DPLATFORM_HOST_INTF_I2C_BUS=0
|
|
FLAGS += -DPLATFORM_HW_TYPE=0x8086 -DPLATFORM_HW_VER=0
|
|
FLAGS += -DPLAT_HAS_NO_U_TYPES_H
|
|
|
|
#platform-specific rules
|
|
|
|
%.bin : %.elf
|
|
cp $< $@
|
|
|
|
$(info Included NATIVE platfrom)
|