mirror of
https://github.com/sehugg/mango_one.git
synced 2024-12-12 23:29:10 +00:00
12 lines
141 B
Makefile
12 lines
141 B
Makefile
|
|
all: mango1.hex
|
|
|
|
mango1.hex: mango1.bin
|
|
|
|
%.bin: %.dasm
|
|
dasm $< -f3 -o$@ -L$*.lst
|
|
|
|
%.hex: %.bin
|
|
hexdump -e '"" 8/1 "%02x\n" "\n"' $< > $@
|
|
|