blob: 268b81f7ad20f207e7e5337fcc8fa36121aa1bcb [file] [log] [blame]
# Copyright (c) 2010 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 CC ?= gcc
export CFLAGS = -Wall -DNDEBUG -O3 -Werror
export TOP = $(shell pwd)
export INCLUDES = \
-I$(TOP)/common/include \
-I$(TOP)/cryptolib/include \
-I$(TOP)/misclibs/include \
-I$(TOP)/cgptlib
SUBDIRS=common cgptlib cryptolib misclibs vfirmware vkernel utility tests
all:
set -e; \
for i in $(SUBDIRS); do \
make -C $$i; \
done
clean:
set -e; \
for i in $(SUBDIRS); do \
make -C $$i clean; \
done