# Makefile for read_meso.c # # define macros. not really necessary to do it for this simple program CFLAGS = -lm SRC = read_meso.c OBJ = read_meso.o # # now define identifer to use on command line (or can simply say make) # # note tab on cc line read_meso: $(OBJ) cc -o read_meso $(SRC) $(CFLAGS)