mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-10 09:31:51 +00:00
Build output is now in ./build Fixed compiler warnings in ec_uartd, ec_console BUG=none TEST=make Change-Id: I9a46ab6b9d4e912e59a60c669e95dc0c6f8485df
73 lines
1.3 KiB
Makefile
73 lines
1.3 KiB
Makefile
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
export FIRMWARE_ARCH
|
|
|
|
export CC ?= gcc
|
|
export CXX ?= g++
|
|
export CFLAGS = -Wall -Werror
|
|
|
|
ifeq (${DEBUG},)
|
|
CFLAGS += -O3
|
|
else
|
|
CFLAGS += -O0 -g
|
|
endif
|
|
|
|
# Fix compiling directly on host (outside of emake)
|
|
ifeq ($(ARCH),)
|
|
export ARCH=amd64
|
|
endif
|
|
|
|
ifneq (${DEBUG},)
|
|
CFLAGS += -DVBOOT_DEBUG
|
|
endif
|
|
|
|
ifeq (${DISABLE_NDEBUG},)
|
|
CFLAGS += -DNDEBUG
|
|
endif
|
|
|
|
export TOP = $(shell pwd)
|
|
export CROS_EC_DIR=$(TOP)/cros_ec
|
|
export CHIP_STUB_DIR=$(CROS_EC_DIR)/chip_stub
|
|
|
|
INCLUDES = -I$(TOP)/chip_interface -I$(CROS_EC_DIR)/include
|
|
|
|
ifeq ($(FIRMWARE_ARCH),)
|
|
INCLUDES += -I$(CHIP_STUB_DIR)/include
|
|
endif
|
|
|
|
export INCLUDES
|
|
|
|
export BUILD = ${TOP}/build
|
|
export CROS_EC_LIB = ${BUILD}/cros_ec.a
|
|
export CHIP_STUB_LIB = ${BUILD}/chip_stub.a
|
|
|
|
ifeq ($(FIRMWARE_ARCH),)
|
|
SUBDIRS = cros_ec cros_ec/test utility
|
|
else
|
|
SUBDIRS = cros_ec
|
|
endif
|
|
|
|
all:
|
|
set -e; \
|
|
for d in $(shell find ${SUBDIRS} -name '*.c' -exec dirname {} \; |\
|
|
sort -u); do \
|
|
newdir=${BUILD}/$$d; \
|
|
if [ ! -d $$newdir ]; then \
|
|
mkdir -p $$newdir; \
|
|
fi; \
|
|
done; \
|
|
for i in $(SUBDIRS); do \
|
|
make -C $$i; \
|
|
done
|
|
|
|
clean:
|
|
/bin/rm -rf ${BUILD}
|
|
|
|
install:
|
|
$(MAKE) -C utility install
|
|
|
|
runtests:
|
|
$(MAKE) -C cros_ec/test runtests
|