##
## Makefile for VS library
##
## @(#)Makefile	1.3	(NCSA)	8/14/87
##

CFLAGS= -g
SRC= vsem.c vsinterf.c vsintern.c rssun.c
OBJ= vsem.o vsinterf.o vsintern.o rssun.o

.c.o:
	cc -c $(CFLAGS) $*.c

libvs.a:	$(OBJ)
	ar cr $@ $(OBJ)
	ranlib $@

tags:	FRC
	ctags -w $(SRC)

depend:
	maketd $(SRC)

FRC:
# DO NOT DELETE THIS LINE - make depend DEPENDS ON IT

vsem.o: vsdata.h vsem.c vskeys.h

vsinterf.o: vsdata.h vsinit.h vsinterf.c vskeys.h

vsintern.o: vsdata.h vsintern.c vskeys.h

rssun.o: rssun.c vsdata.h vskeys.h

# *** Do not add anything here - It will go away. ***
