mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-11 18:35:28 +00:00
This creates a new vboot_firmware subdirectory, and which contains the entirety of the BIOS code. There shouldn't be anything in this directory that is NOT required by the BIOS. Review URL: http://codereview.chromium.org/2219004
20 lines
453 B
Makefile
20 lines
453 B
Makefile
# 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.
|
|
|
|
CC ?= gcc
|
|
INCLUDES += -I./include \
|
|
-I$(FWDIR)/lib/cryptolib/include \
|
|
-I../common/include \
|
|
-I../misclibs/include
|
|
CFLAGS ?= -Wall -DNDEBUG -O3 -Werror
|
|
KERNEL_OUT = kernel_image.o
|
|
|
|
all: $(KERNEL_OUT)
|
|
|
|
.c.o:
|
|
$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
|
|
|
|
clean:
|
|
rm -f $(KERNEL_OUT)
|