### Author: Mohammed A. Al Farhan, PhD student at ECRC, KAUST ### Email: mohammed.farhan@kaust.edu.sa ### ### ps2.c Makefile all: clean ps2 .PHONY: clean include ${PETSC_DIR}/conf/variables include ${PETSC_DIR}/conf/rules CC = ${CLINKER} SRC = ps2.c OBJ = ${SRC:.c=.o} ps2: ${OBJ} chkopts ${CC} -o ps2.out ${OBJ} ${PETSC_LIB} ${RM} *.o clean:: ${RM} -rf *.o *.out