PROJ   = lovas

include ../Makedefs

SRCS =  $(PROJ).c ledio.c globals.c i2c.c rtc.c uart2.c rprintf.c buffer.c cmdline.c cmds.c
OBJS =  $(SRCS:.c=.o)
LIBS =  -lefsl -llcd
TARG =  $(PROJ).hex

all: $(OBJS) $(TARG)

include ../Makerules


clean:
	-rm -f $(OBJS)
	-rm -f $(TARG)
	-rm -f $(PROJ).eep
	-rm -f $(PROJ).obj
	-rm -f $(PROJ).map
	-rm -f $(SRCS:.c=.lst)
	-rm -f $(SRCS:.c=.bak)
	-rm -f $(SRCS:.c=.i)
	-rm -f $(WEBFILE)
