PROGS=	cdwrite
CFLAGS=	-O6
BINDIR=	/usr/bin

all:	$(PROGS)

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

clean:
	-rm -f $(PROGS) *.o *~
