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

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

Issue 2303003: Moved cgptlib into vboot_firmware (Closed) Base URL: ssh://gitrw.chromium.org/chromiumos
Patch Set: Created 10 years, 7 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 | « src/platform/vboot_reference/Makefile ('k') | src/platform/vboot_reference/cgptlib/tests/Makefile » ('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
deleted file mode 100644
index 5b37af5610aaad2d02b475ddec9d21f633f588ee..0000000000000000000000000000000000000000
--- a/src/platform/vboot_reference/cgptlib/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-# 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 += -Itests
-SUBDIRS = tests
-
-all: libcgpt.a
- set -e; \
- for i in $(SUBDIRS); do \
- $(MAKE) -C $$i; \
- done
-
-.c.o:
- $(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
-
-libcgpt.a: cgptlib.o quick_sort.o crc32.o
- $(AR) rs $@ $^
-
-clean:
- set -e; \
- for i in $(SUBDIRS); do \
- $(MAKE) -C $$i clean; \
- done
- rm -f *.o *~ *.a
« no previous file with comments | « src/platform/vboot_reference/Makefile ('k') | src/platform/vboot_reference/cgptlib/tests/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698