8 lines
128 B
Makefile
8 lines
128 B
Makefile
|
default: blink.hex
|
||
|
|
||
|
blink.hex: blink.asm tn13def.inc
|
||
|
avra blink.asm
|
||
|
|
||
|
clean:
|
||
|
rm -f blink.hex blink.cof blink.eep.hex blink.obj
|