OBJS   = div_mod.o \
         adsorbent_mod.o \
         fuga_mod.o \
         molecules_prop.o \
         adsorption_isotherm.o \
         adsorbent_properties_UFF.o \
         calc_fugacity_bin.o \
         fluid_properties.o \
         main_excess.o \

FOPS = -g 

fuga: $(OBJS) 
	@echo "Linking excess ..."
	@ifort $(FOPS) $(OBJS) -o excess_UFF.exe
	@echo "done"

clean:;	@ rm -f *.o *.mod


%.o: %.f90
	ifort -c $(FOPS) $^
