DESTDIR =
CFLAGS	= -O

lc:	lc.c
	${CC} ${CFLAGS} -o lc lc.c

install:	lc
	install -s lc $(DESTDIR)/usr/bin/lc

clean:
	rm -f lc a.out core *.o *.bak
