| Index: utility/Makefile
|
| diff --git a/utility/Makefile b/utility/Makefile
|
| index 8d370094ce603662869cfda1c5a434b6595330db..c3f0a2d3c64c6f97306ce06f405a8d3d682fd923 100644
|
| --- a/utility/Makefile
|
| +++ b/utility/Makefile
|
| @@ -1,4 +1,4 @@
|
| -# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
|
| +# Copyright (c) 2011 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.
|
|
|
| @@ -21,6 +21,7 @@ TARGET_NAMES = crossystem \
|
| dumpRSAPublicKey \
|
| dump_kernel_config \
|
| gbb_utility \
|
| + load_firmware_test \
|
| load_kernel_test \
|
| pad_digest_utility \
|
| signature_digest_utility \
|
| @@ -62,6 +63,9 @@ ${BUILD_ROOT}/gbb_utility: gbb_utility.cc
|
| ${BUILD_ROOT}/bmpblk_utility: bmpblk_utility.cc
|
| $(CXX) -DWITH_UTIL_MAIN -lyaml $(CFLAGS) $< -o $@
|
|
|
| +${BUILD_ROOT}/load_firmware_test: load_firmware_test.c $(LIBS)
|
| + $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
|
| +
|
| ${BUILD_ROOT}/load_kernel_test: load_kernel_test.c $(LIBS)
|
| $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
|
|
|
| @@ -112,8 +116,8 @@ ${BUILD_ROOT}/tpmc: tpmc.c $(LIBS)
|
| ${BUILD_ROOT}/dev_sign_file: dev_sign_file.c $(LIBS)
|
| $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
|
|
|
| -${BUILD_ROOT}/dump_fmap: dump_fmap.c
|
| - $(CC) $(CFLAGS) $< -o $@
|
| +${BUILD_ROOT}/dump_fmap: dump_fmap.c $(LIBS)
|
| + $(CC) $(CFLAGS) $< -o $@ $(LIBS)
|
|
|
| ${BUILD_ROOT}/pack_firmware_image: pack_firmware_image
|
| cp -f $< $@
|
|
|