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

Unified Diff: src/platform/vboot_reference/cgptlib/Makefile

Issue 1729006: Add helper functions and files for gpt tests. (Closed)
Patch Set: fix for code review Created 10 years, 8 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 | « no previous file | src/platform/vboot_reference/cgptlib/cgpt.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/vboot_reference/cgptlib/Makefile
diff --git a/src/platform/vboot_reference/cgptlib/Makefile b/src/platform/vboot_reference/cgptlib/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..418163c2527f7f3262a5ea9976c0be7e153f7bd1
--- /dev/null
+++ b/src/platform/vboot_reference/cgptlib/Makefile
@@ -0,0 +1,24 @@
+# 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.
+
+CFLAGS ?= -Wall -Werror -ansi
+INCLUDES += tests
+SUBDIRS = tests
+
+all: cgpt.a
+ for i in $(SUBDIRS); do \
+ ( cd $$i ; $(MAKE)) ; \
+ done
+
+.c.o:
+ $(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
+
+cgpt.a: cgpt.o
+ $(AR) rs cgpt.a $<
+
+clean:
+ for i in $(SUBDIRS); do \
+ ( $(MAKE) -C $$i clean ) ; \
+ done
+ rm -f cgpt cgpt-host *.o *~ *.a
« no previous file with comments | « no previous file | src/platform/vboot_reference/cgptlib/cgpt.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698