# Makefile for wns
#
# Define in CFLAGS:
#	SYSINC	if include file hierarchy includes the sys/ directory
#	REGEX	if using berkeley-style re_exec() and re_comp()
#	REGCMP	if using regcmp() and regex()
#	OS_UNIX if running under unix
#	OS_CPM	if running under CP/M80
#
#
CFLAGS=-DOS_UNIX -DREGCMP -DSYSINC
#
# Define LIBS to reflect the librar[y][ies] needed to fetch the r/e routines.
#
LIBS=-lPW

#
WNSOBJS=wns.o

wns:	$(WNSOBJS)
	cc -o wns $(WNSOBJS) $(LIBS)
