]> git.llucax.com Git - z.facultad/66.09/etherled.git/blob - pruebas/sdcc/leds_asm/Makefile
Agrego ejemplo de los leds andando escrito en ASM para sdcc. Falta hacer el .h
[z.facultad/66.09/etherled.git] / pruebas / sdcc / leds_asm / Makefile
1
2 all:
3         @asx8051 -plosgff leds.asm
4         @aslink -nf leds.lnk
5         @packihx leds.ihx > leds.hex
6
7 cleantmp:
8         @rm -f *.sym *.rel *.map *.ihx *.lst *.mem *.rst
9
10 clean: cleantmp
11         @rm -f *.hex
12
13 .PHONY: clean cleantmp
14