FC = g77
FFLAGS = -ffree-form

obj = main.o plainmc.o pseudo.o

all: main

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

clean:
	rm -f $(obj) main
