]> git.llucax.com Git - z.facultad/66.09/etherled.git/blob - pruebas/sdcc/leds_asm/Makefile
Alguna modificación al informe que ya no recuerdo.
[z.facultad/66.09/etherled.git] / pruebas / sdcc / leds_asm / Makefile
1
2 all: leds.hex
3
4 leds.rel: leds.asm
5         asx8051 -plosgff leds.asm
6
7 main.asm: main.c leds.h
8         sdcc -c main.c
9
10 main.rel: main.asm
11         asx8051 -plosgff main.asm
12
13 leds.hex: main.rel leds.rel leds.lnk
14         aslink -nf leds.lnk
15         packihx main.ihx > leds.hex
16
17 cleantmp:
18         @rm -vf *.sym *.rel *.map *.ihx *.lst *.mem *.rst main.asm
19
20 clean: cleantmp
21         @rm -vf *.hex
22
23 .PHONY: clean cleantmp
24