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

Side by Side Diff: cgpt/Makefile

Issue 2833012: Move all system includes in vboot_firmware to sysincludes.h (Closed) Base URL: ssh://gitrw.chromium.org/vboot_reference.git
Patch Set: Oops, forgot the new header 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 unified diff | Download patch
« no previous file with comments | « no previous file | utility/kernel_utility.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 CFLAGS += -static 5 CFLAGS += -static
6 LDFLAGS += -luuid 6 LDFLAGS += -luuid
7 BUILD_ROOT := ${BUILD}/cgpt 7 BUILD_ROOT := ${BUILD}/cgpt
8 8
9 INCLUDES = -I$(FWDIR)/lib/cgptlib/include 9 INCLUDES = -I$(FWDIR)/lib/cgptlib/include -I$(FWDIR)/include
10 LIBS = ${FWLIB} 10 LIBS = ${FWLIB}
11 11
12 DESTDIR ?= /usr/bin 12 DESTDIR ?= /usr/bin
13 13
14 PROGNAME = ${BUILD_ROOT}/cgpt 14 PROGNAME = ${BUILD_ROOT}/cgpt
15 15
16 ALL_SRCS = \ 16 ALL_SRCS = \
17 cgpt.c \ 17 cgpt.c \
18 cmd_show.c \ 18 cmd_show.c \
19 cmd_repair.c \ 19 cmd_repair.c \
20 cmd_create.c \ 20 cmd_create.c \
21 cmd_add.c \ 21 cmd_add.c \
22 cmd_boot.c \ 22 cmd_boot.c \
23 cgpt_common.c 23 cgpt_common.c
24 24
25 main: $(PROGNAME) 25 main: $(PROGNAME)
26 26
27 include ../common.mk 27 include ../common.mk
28 28
29 $(PROGNAME): $(ALL_OBJS) $(LIBS) 29 $(PROGNAME): $(ALL_OBJS) $(LIBS)
30 $(CC) -o $(PROGNAME) $(CFLAGS) $^ $(LDFLAGS) 30 $(CC) -o $(PROGNAME) $(CFLAGS) $^ $(LDFLAGS)
31 31
32 install: $(PROGNAME) 32 install: $(PROGNAME)
33 mkdir -p $(DESTDIR) 33 mkdir -p $(DESTDIR)
34 cp -f $^ $(DESTDIR) 34 cp -f $^ $(DESTDIR)
35 chmod a+rx $(patsubst ${BUILD_ROOT}/%,$(DESTDIR)/%,$^) 35 chmod a+rx $(patsubst ${BUILD_ROOT}/%,$(DESTDIR)/%,$^)
36 36
37 .PHONY: all install 37 .PHONY: all install
OLDNEW
« no previous file with comments | « no previous file | utility/kernel_utility.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698