CC=gcc
CFLAGS= -O6

PROGS=realpath
BINDIR=/usr/bin

all:	$(PROGS)

install:	$(PROGS)
	install $(PROGS) $(BINDIR)

clean:
	-rm -f $(PROGS)
