# Makefile for ditrev -
# a program to reverse the order that pages of a ditroff file are
# printed to avoid having to manually rearrange them to get them
# in the correct order.
#
# use -DREALLOC if you want this program to use realloc(1)
CFLAGS = -O -DREALLOC

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

