| Index: utility/Makefile
|
| diff --git a/utility/Makefile b/utility/Makefile
|
| index ff0ab102d81ee89030377e312da155b8ae067080..f45603bb0e2dec73ea5a122ca46c76881a59b827 100644
|
| --- a/utility/Makefile
|
| +++ b/utility/Makefile
|
| @@ -27,7 +27,8 @@ TARGET_NAMES = dumpRSAPublicKey \
|
| vbutil_kernel \
|
| vbutil_key \
|
| vbutil_keyblock \
|
| - verify_data
|
| + verify_data \
|
| + dev_make_keypair
|
|
|
| TARGET_BINS = $(addprefix ${BUILD_ROOT}/,$(TARGET_NAMES))
|
| ALL_DEPS = $(addsuffix .d,${TARGET_BINS})
|
| @@ -73,6 +74,9 @@ ${BUILD_ROOT}/sign_image: sign_image.c $(LIBS)
|
| ${BUILD_ROOT}/tpm_init_temp_fix: tpm_init_temp_fix.c $(LIBS)
|
| $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS)
|
|
|
| +${BUILD_ROOT}/dev_make_keypair: dev_make_keypair
|
| + cp -f $< $@
|
| +
|
| install: $(TARGET_BINS)
|
| mkdir -p $(DESTDIR)
|
| cp -f $(TARGET_BINS) $(DESTDIR)
|
|
|