DEFS	= -DUNIX
CFLAGS  = $(DEFS) -O


all:	dpp

dpp:	dpp.c
	cc $(CFLAGS) -o dpp dpp.c

clean:
	rm -f dpp core a.out *.o
