# # Makefile for gaussPT-IBM for AIX 4.1.4. # # To enable checking for the correctness of the solution produced, # invoke `make -DCHECK` on the command-line. # # Author: # Pramod G. Joisha, ECE Department, # Northwestern University, April, 1997. # CC = cc_r CFLAGS = -v LIBS = -lpthreads all : gaussPT-IBM clean : rm -f gaussPT-IBM *.o a.out core gaussPT-IBM: $(CC) $(CFLAGS) $(MAKEFLAGS) -o gaussPT-IBM gaussPT-IBM.c \ $(LIBS)