| Index: utility/Makefile
|
| diff --git a/utility/Makefile b/utility/Makefile
|
| index 68975840b904feda45be66e402033e7ac2ef88f4..cdd342888696b6eba3f543edd848eb8a46df40b4 100644
|
| --- a/utility/Makefile
|
| +++ b/utility/Makefile
|
| @@ -34,6 +34,7 @@ TARGET_NAMES = dumpRSAPublicKey \
|
| dev_sign_file \
|
| dump_fmap \
|
| dev_debug_vboot \
|
| + pack_image
|
|
|
| TARGET_BINS = $(addprefix ${BUILD_ROOT}/,$(TARGET_NAMES))
|
| ALL_DEPS = $(addsuffix .d,${TARGET_BINS})
|
| @@ -99,6 +100,10 @@ ${BUILD_ROOT}/dev_sign_file: dev_sign_file.c $(LIBS)
|
| ${BUILD_ROOT}/dump_fmap: dump_fmap.c
|
| $(CC) $(CFLAGS) $< -o $@
|
|
|
| +${BUILD_ROOT}/pack_image: pack_image
|
| + cp -f $< $@
|
| + chmod +x $@
|
| +
|
| install: $(TARGET_BINS)
|
| mkdir -p $(DESTDIR)
|
| cp -f $(TARGET_BINS) $(DESTDIR)
|
|
|