# New Makefile
# for strfile
# ported from BSD sources by Fazal Majid, 1992

CC = gcc
CFLAGS = $(OPTS)

all: strfile
	
install: strfile
	install -m 755 strfile $(SYSDESTDIR)
	$(INSTALL) strfile.8 /usr/man/man8

clean:
	-rm strfile
