Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(588)

Unified Diff: host/Makefile

Issue 2745007: Major refactoring of structures, with unit tests. (Closed) Base URL: ssh://gitrw.chromium.org/vboot_reference.git
Patch Set: Implemented LoadFirmware2() Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Makefile ('k') | host/include/host_common.h » ('j') | host/lib/host_key.c » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: host/Makefile
diff --git a/host/Makefile b/host/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..6c320eb9f189e10af4d755958a18f182e94e2aac
--- /dev/null
+++ b/host/Makefile
@@ -0,0 +1,45 @@
+# 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.
+
+LIBNAME = vboot_host.a
+
+CC ?= gcc
+CFLAGS = -Wall -DNDEBUG -O3 -Werror
+
+HOSTTOP := $(shell pwd)
+LIBDIR = $(HOSTTOP)/lib
+TESTDIR = $(HOSTTOP)/linktest
+
+INCLUDES += \
+ -I$(HOSTTOP)/include \
+ -I$(FWDIR)/lib/include \
+ -I$(FWDIR)/lib/cgptlib/include \
+ -I$(FWDIR)/lib/cryptolib/include
+
+# find ./lib -iname '*.c' | sort
+LIB_SRCS = \
+ ./lib/host_common.c \
+ ./lib/host_key.c \
+ ./lib/host_signature.c
+
+LIB_OBJS = $(LIB_SRCS:%.c=%.o)
+
+test : $(LIBNAME)
+ $(CC) $(CFLAGS) $(INCLUDES) -o $(TESTDIR)/a.out $(TESTDIR)/main.c \
+ $(LIBNAME) $(FWLIB) $(TOP)/misclibs/file_keys.o -lcrypto
+
+$(LIBNAME) : $(LIB_OBJS) $(STUB_OBJS)
+ rm -f $@
+ ar qc $@ $^
+
+%o : %c
+ $(CC) $(CFLAGS) $(INCLUDES) -c -o $@ $<
+
+clean: FORCE
+ rm -f $(LIBNAME) $(LIB_OBJS) $(STUB_OBJS) $(TESTDIR)/a.out
+
+FORCE:
+
+
+.PHONY: FORCE
« no previous file with comments | « Makefile ('k') | host/include/host_common.h » ('j') | host/lib/host_key.c » ('J')

Powered by Google App Engine
This is Rietveld 408576698