# You may specify the location of your fortran compiler here, if it suits you
#FC = /usr/bin/f77


OBJS =  talys_upack.o linear.o \
       

PROGRAM = talys_upack

$(PROGRAM): $(OBJS) 
	$(LINK.f) -o $(PROGRAM) $(OBJS) $(FFLAGS) $(LIBS)
	
clean:
	-rm -f $(OBJS)
