#
# Makefile for 'strings'
#
# sccsid = @(#)  REL.Mfile  (v1.3 5/22/89)
#
SHELL=/bin/sh

# If you want to play it safe, define SAFETY_FIRST. The program will most
# probably work and you won't have to spend time on porting it.
# If you have defined things yourself and you want the program
# to use these definitions, you must define USE_USER_DEFINES.
# If you don't define SAFETY_FIRST and USE_USER_DEFINES, the program
# will try to identify your system and then use its defaults.
UFLAGS=
#UFLAGS=-DUSE_USER_DEFINES
#UFLAGS=-DSAFETY_FIRST

# Define DEBUG to get a lot of debug output on "prot".
DEBUGFLAGS=

CFLAGS= -O ${DEBUGFLAGS} ${UFLAGS}

HEADERS=	strings.h config.h tune.h
OBJS=		strings.o limits.o output.o

all: strings

strings: ${OBJS}
	cc -o strings ${OBJS}

${OBJS}:	${HEADERS}

#strings.o: strings.h config.h tune.h
#limits.o : strings.h config.h tune.h
#output.o : strings.h config.h tune.h
