FC = g77
FFLAGS = -ffree-form

obj = simplex.o main.o

all: main

main: $(obj)
	g77 -o main $(obj)
