all: omp_reduction struct ex1float timer argv matrix cc = icc omp_reduction: $(cc) -o omp_reduction omp_reduction.c -openmp struct: $(cc) -o struct struct.c timer: $(cc) -o timer timer.c -lm argv: $(cc) -o argv argv.c ex1float: $(cc) -o ex1float ex1float.c matrix: $(cc) -Wall -o matrix matrix.c -lm clean: rm -f *.o omp_reduction ex1float struct timer argv timing matrix