# New Makefile
# for fortune(6)
# ported from BSD sources by Fazal Majid, 1992

CC = gcc
CFLAGS = -I../strfile $(OPTS)

all: fortune

install: fortune
	install -m 755 fortune $(BINDESTDIR)
	$(INSTALL) fortune.6 /usr/man/man6
	
clean:
	-rm fortune
