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

Side by Side Diff: firmware/Makefile

Issue 6334148: Remove version.c (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/vboot_reference.git@master
Patch Set: Created 9 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | firmware/version.c » ('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 FWTOP := $(shell pwd) 5 FWTOP := $(shell pwd)
6 LIBDIR = $(FWTOP)/lib 6 LIBDIR = $(FWTOP)/lib
7 STUBDIR = $(FWTOP)/stub 7 STUBDIR = $(FWTOP)/stub
8 TESTDIR = $(FWTOP)/linktest 8 TESTDIR = $(FWTOP)/linktest
9 BUILD_ROOT := ${BUILD}/$(shell basename ${FWTOP}) 9 BUILD_ROOT := ${BUILD}/$(shell basename ${FWTOP})
10 LIBS = $(FWLIB) # Firmware library must be self-contained 10 LIBS = $(FWLIB) # Firmware library must be self-contained
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 LIB_OBJS = $(LIB_SRCS:%.c=${BUILD_ROOT}/%.o) 50 LIB_OBJS = $(LIB_SRCS:%.c=${BUILD_ROOT}/%.o)
51 51
52 STUB_SRCS = \ 52 STUB_SRCS = \
53 ./stub/boot_device_stub.c \ 53 ./stub/boot_device_stub.c \
54 ./stub/load_firmware_stub.c \ 54 ./stub/load_firmware_stub.c \
55 ./stub/tpm_lite_stub.c \ 55 ./stub/tpm_lite_stub.c \
56 ./stub/utility_stub.c 56 ./stub/utility_stub.c
57 57
58 STUB_OBJS = $(STUB_SRCS:%.c=${BUILD_ROOT}/%.o) 58 STUB_OBJS = $(STUB_SRCS:%.c=${BUILD_ROOT}/%.o)
59 59
60 ALL_SRCS = ${LIB_SRCS} ${STUB_SRCS} version.c 60 ALL_SRCS = ${LIB_SRCS} ${STUB_SRCS}
61 61
62 ifeq ($(FIRMWARE_ARCH),) 62 ifeq ($(FIRMWARE_ARCH),)
63 test : $(STUB_OBJS) $(FWLIB) update-version 63 test : $(STUB_OBJS) $(FWLIB)
64 $(CC) $(CFLAGS) $(INCLUDES) -o $(BUILD_ROOT)/a.out \ 64 $(CC) $(CFLAGS) $(INCLUDES) -o $(BUILD_ROOT)/a.out \
65 $(TESTDIR)/main.c $(STUB_OBJS) $(LIBS) 65 $(TESTDIR)/main.c $(STUB_OBJS) $(LIBS)
66 else 66 else
67 test : $(FWLIB) 67 test : $(FWLIB)
68 endif 68 endif
69 69
70 # This is executed at every make, to see if anything has changed
71 update-version :
72 find \( -name '*.[ch]' -o -name 'Makefile*' \) -a \! -name version.c \
73 | sort | xargs cat | md5sum | cut -c 25-32 > \
74 ${BUILD_ROOT}/x.tmp && \
75 echo "char* VbootVersion = \"VBOOv=$$(cat ${BUILD_ROOT}/x.tmp)\";" > \
76 ${BUILD_ROOT}/version.tmp && \
77 (cmp -s ${BUILD_ROOT}/version.tmp version.c || \
78 ( echo "** Updating version.c **" && \
79 cp ${BUILD_ROOT}/version.tmp version.c))
80
81 include ../common.mk 70 include ../common.mk
82 71
83 $(FWLIB) : $(LIB_OBJS) 72 $(FWLIB) : $(LIB_OBJS)
84 rm -f $@ 73 rm -f $@
85 ar qc $@ $^ 74 ar qc $@ $^
OLDNEW
« no previous file with comments | « no previous file | firmware/version.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698