CC = gcc -std=c11 -pedantic -Wall -g LIB = /vecr/lib p1: p1.c $(LIB)/iPlot1.o X @rm -f p1.exe $(CC) -o p1.exe p1.c $(LIB)/iPlot1.o -lm p2: p2.c $(LIB)/iPlot2.o X @rm -f p2.exe $(CC) -o p2.exe p2.c $(LIB)/iPlot2.o -lm p3: p3.c $(LIB)/iPlot3.o X @rm -f p3.exe $(CC) -o p3.exe p3.c $(LIB)/iPlot3.o -lm X: @/bin/true clean: rm -f a.out core p1.exe p2.exe p3.exe