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

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

all: unstr

install: unstr
	install -m 755 unstr $(SYSDESTDIR)
	
clean:
	-rm unstr
