From c5ec6aa50ab44071c403d0a16fbed52c5a455b31 Mon Sep 17 00:00:00 2001 From: pragyabansal02 <53625614+pragyabansal02@users.noreply.github.com> Date: Tue, 15 Oct 2019 15:23:50 +0530 Subject: [PATCH] Update Makefile --- hello_world/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hello_world/Makefile b/hello_world/Makefile index 12daea2..5987219 100644 --- a/hello_world/Makefile +++ b/hello_world/Makefile @@ -24,5 +24,8 @@ hello_world.bin: hello_world.elf hello_world.hex: hello_world.bin ./bin2hex.py hello_world.bin > hello_world.hex +hello_world.dec: hello_world.bin + ./bin2dec.py hello_world.bin > hello_world.dec + clean: @rm -f *.o hello_world.elf hello_world.bin hello_world.hex