# trivial makefile - you edit it...

CC_OPTS=-O
# define USE_STRINGS_H if you have <strings.h> instead of <string.h>
# CC_OPTS=-O -DUSE_STRINGS_H

phonewrd:	phonewrd.c patchlevel.h
		cc -o phonewrd phonewrd.c $(CC_OPTS)

install:	phonewrd
		cp phonewrd /usr/contrib/bin
		cp phonewrd.1 /usr/man/man1

clean:
		rm phonewrd
