SOURCESA =\
graph_proc.c

DEPENDENCY =

MATHLIBS = -lm
CFLAGS = -sun4 -O
HEADERSA =
HEADERS = ${HEADERSA}
LIBRARY = graphlib.a

# This works for SunOS 4.0 and SunOS 3.2 not for SunOS 3.5.
${LIBRARY}: 	${LIBRARY}{${SOURCESA:.c=.o}} ${DEPENDENCY}
	ar rv $@ $?
	ranlib $@
# For SunOS 3.5 use this instead.
#	ar rv $@ *.o
#	ranlib $@

lib.a(%.o):	%.o

${SOURCESA:.c=.o}: ${HEADERSA}
	cc -c $*.c ${CFLAGS} ${MATHLIBS}

${HEADERS}:
