CFLAGS = -O
OBJS	= pltroff.o driver.o

pltroff: $(OBJS)
	cc -s -o pltroff $(OBJS) -lm

clean:
	rm $(OBJS)
