#CC=mips-uclibc-gcc
#LDFLAGS=-static

CFLAGS=-O2 -Wall

all: putlcd buttond

install: all
	install putlcd /usr/local/sbin
	install buttond /usr/local/sbin

clean:
	rm -f putlcd buttond *.o

distclean: clean
	rm -f *~

buttond:	buttond.o liblcd.o

putlcd:	putlcd.o liblcd.o

