Removed hex2bin by sdcc object copy.
This commit is contained in:
parent
d7f26a5db7
commit
45bb5fa612
3
Makefile
3
Makefile
|
@ -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
|
||||||
|
|
|
@ -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
|
|
||||||
|
|
Loading…
Reference in a new issue