Removed hex2bin by sdcc object copy.

This commit is contained in:
Willem Cazander 2024-06-24 13:52:11 +02:00
parent d7f26a5db7
commit 45bb5fa612
2 changed files with 2 additions and 3 deletions

View file

@ -1,6 +1,5 @@
-include Makelocal.mk -include Makelocal.mk
PATH_SDCC ?= /usr/bin PATH_SDCC ?= /usr/bin
PATH_HEX2BIN ?= /usr/bin
PATH_BIN := bin PATH_BIN := bin
BUILD_ALL := "Use 'make help' for possible targets." BUILD_ALL := "Use 'make help' for possible targets."
BUILD_HELP := "Use one of the following build targets;" BUILD_HELP := "Use one of the following build targets;"
@ -33,7 +32,7 @@ bin/omsxctl/omsxctl.hex: bin/omsxctl/omsxctl.rel
BUILD_HELP += \\n\\t* bin/omsxctl/omsxctl.com BUILD_HELP += \\n\\t* bin/omsxctl/omsxctl.com
bin/omsxctl/omsxctl.com: bin/omsxctl/omsxctl.hex bin/omsxctl/omsxctl.com: bin/omsxctl/omsxctl.hex
cd bin/omsxctl && $(PATH_HEX2BIN)/hex2bin -e com omsxctl.hex $(PATH_SDCC)/sdobjcopy -I ihex --output-target=binary $< $@
bin/dist: bin/dist:
mkdir -p bin/dist mkdir -p bin/dist

View file

@ -4,4 +4,4 @@
# Change to local installations if needed; # Change to local installations if needed;
#PATH_SDCC ?= /usr/bin #PATH_SDCC ?= /usr/bin
#PATH_HEX2BIN ?= /usr/bin