CFLAGS = -O2 -Wall
modules = read_plot3d_xy

all: $(modules)

.PHONY: clean
clean:
	-rm -f $(modules)

