FFLAGS = $(DFLAGS) -O1 -ansi
OBJS  = main.o period.o
period: $(OBJS)
	f77 $(DFLAGS) $(OBJS) -o period
