xa51, work in progress
[fw/sdcc] / device / examples / xa51 / Makefile
1 CC = sdcc
2
3 CFLAGS= -Wa-s -V
4 MFLAGS= -mxa51
5 #LFLAGS=
6
7 all: hello.hex
8
9
10 hello.hex: hello.c
11         $(CC) $(CFLAGS) $(MFLAGS) hello.c
12
13 clean:
14         rm -f core *~ \#* *.asm *.cdb *.rel *.hex *.ihx *.lst *.map \
15                 *.xa *.rst *.sym *.lnk *.lib *.bin *.dump* *.log
16