F90 = g95
SUF = f90
OPT = -c

.SUFFIXES: .f90 .o

OBJS = modd_aeroset.o ini_aeroset1.o ini_aeroset2.o ini_aeroset3.o ini_aeroset4.o ini_aeroset5.o ini_aeroset6.o ch_aodoff.o

all : ch_aodoff

ch_aodoff : $(OBJS)
	$(F90) -o $@ $(OBJS)

clean:
	\rm *.o *.mod ch_aofoff

.$(SUF).o:
	$(F90) $(OPT) $<

