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

Side by Side Diff: src/platform/vboot_reference/utility/Makefile

Issue 2325002: need to chmod binaries (Closed) Base URL: ssh://git@chromiumos-git/chromeos
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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | 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 TOP ?= ../ 5 TOP ?= ../
6 CC ?= gcc 6 CC ?= gcc
7 CXX ?= g++ 7 CXX ?= g++
8 INCLUDES += -I./include \ 8 INCLUDES += -I./include \
9 -I$(FWDIR)/lib/cgptlib/include \ 9 -I$(FWDIR)/lib/cgptlib/include \
10 -I$(FWDIR)/lib/cryptolib/include \ 10 -I$(FWDIR)/lib/cryptolib/include \
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 clean: 53 clean:
54 set -e; \ 54 set -e; \
55 for i in $(SUBDIRS); do \ 55 for i in $(SUBDIRS); do \
56 $(MAKE) -C $$i clean; \ 56 $(MAKE) -C $$i clean; \
57 done 57 done
58 rm -f $(TARGET_BINS) 58 rm -f $(TARGET_BINS)
59 59
60 install: $(TARGET_BINS) 60 install: $(TARGET_BINS)
61 mkdir -p $(DESTDIR) 61 mkdir -p $(DESTDIR)
62 cp -f $^ $(DESTDIR) 62 cp -f $^ $(DESTDIR)
63 chmod a+rx $(patsubst %,$(DESTDIR)/%,$^)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698