| Index: src/platform/vboot_reference/vfirmware/Makefile
|
| diff --git a/src/platform/vboot_reference/vfirmware/Makefile b/src/platform/vboot_reference/vfirmware/Makefile
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a915c316b686d32a39409b683ce6f38ac891f3be
|
| --- /dev/null
|
| +++ b/src/platform/vboot_reference/vfirmware/Makefile
|
| @@ -0,0 +1,19 @@
|
| +# 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../cryptolib/include \
|
| + -I../common/include \
|
| + -I../misclibs/include
|
| +CFLAGS ?= -Wall -DNDEBUG -O3 -Werror
|
| +FIRMWARE_OUT = firmware_image_fw.o firmware_image.o
|
| +
|
| +all: $(FIRMWARE_OUT)
|
| +
|
| +.c.o:
|
| + $(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
|
| +
|
| +clean:
|
| + rm -f $(FIRMWARE_OUT)
|
|
|