#
#               Makefile for Riemann solvers:
#
#  Type "make" or "make rp" to create .o files needed in applications directories
#
#
FFLAGS =  -c
LFLAGS =  
LINK    = f77
.f.o: ; $(LINK) $(FFLAGS) $*.f

RPOBJECTS = \
  rp1ac.o \
  rp1acv.o 

RPSOURCES = \
  rp1ac.f \
  rp1acv.f

rp: $(RPOBJECTS)


### DO NOT remove this line - make depends on it ###
