
all: temp.hex

temp.rel: temp.c c8051f330.h
	sdcc -mmcs51 -I D:\PROGRA~1\sdcc\include -c temp.c

temp.hex: temp.rel
	sdcc -mmcs51 -L D:\PROGRA~1\sdcc\lib\small temp.rel
	move temp.ihx temp.hex

clean:
	-del *.rel

allclean: dist
	-del *.hex

dist:
	-del *.rel
	-del *.asm
	-del *.lst
	-del *.map
	-del *.rst
	-del *.sym
	-del *.cdb
	-del *.lnk

write:
#	FlashUtilCL download -RE temp.hex 1 1 0
#	ugpw /p /isp /f330 temp.hex
	@echo I don't know how to write ...
