RM= rm -f
F77= f77
SRCS=somnec.f
OBJS=somnec.o
FFLAGS= -O2

all: $(OBJS)
	$(F77) -o somnec $(OBJS)

clean:
	$(RM) *.o
	$(RM) somnec.c
	$(RM) somnec
