| Index: src/platform/vboot_reference/utility/Makefile
|
| diff --git a/src/platform/vboot_reference/utility/Makefile b/src/platform/vboot_reference/utility/Makefile
|
| index 8406e0e6bc12c99311b14f19a7daee4f69d60a02..23a6e1719a3639c1829c2419faeaf665b33e39b2 100644
|
| --- a/src/platform/vboot_reference/utility/Makefile
|
| +++ b/src/platform/vboot_reference/utility/Makefile
|
| @@ -26,6 +26,7 @@ TARGET_BINS = dumpRSAPublicKey \
|
| firmware_utility \
|
| gbb_utility \
|
| kernel_utility \
|
| + load_kernel_test \
|
| signature_digest_utility \
|
| verify_data
|
|
|
| @@ -52,6 +53,9 @@ kernel_utility: kernel_utility.cc $(LIBS) $(FWLIB)
|
| $(CXX) $(CFLAGS) $(INCLUDES) -ggdb -D__STDC_LIMIT_MACROS $< \
|
| -o $@ $(LIBS) $(FWLIB) -lcrypto
|
|
|
| +load_kernel_test: load_kernel_test.c $(LIBS) $(FWLIB)
|
| + $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) $(FWLIB) -lcrypto
|
| +
|
| signature_digest_utility: signature_digest_utility.c $(LIBS) $(FWLIB)
|
| $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) $(FWLIB) -lcrypto
|
|
|
|
|