
## Makefile for VR routines
##
##	@(#)Makefile	1.3	(NCSA)	8/14/87
##

CPPFLAGS= -I../.. -I../Main
CFLAGS= -g $(CPPFLAGS)

SRC= vr.c rrsun.c
OBJ= vr.o rrsun.o

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

tags:
	ctags -w *.c

depend:
	maketd $(CPPFLAGS) $(SRC)
# DO NOT DELETE THIS LINE - make depend DEPENDS ON IT
A=../Main
B=../..

vr.o: vr.c vr.h

rrsun.o: rrsun.c rr.h vr.h vrfile.h

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