# # Makefile for the "hello world" from the PVM distribution. This file is # has been created by using the Makefile.aimk (again coming with the # distribution) as a template. # # Virgil Bistriceanu: 5/26/1996 # PVM_ROOT = /a/apps/pvm3 PVM_ARCH = SGI5 PVMLIB = -lpvm3 ARCHLIB = LIBS = $(PVMLIB) $(ARCHLIB) OPTIONS = -O CFLAGS = $(OPTIONS) -I$(PVM_ROOT)/include LFLAGS = -L$(PVM_ROOT)/lib/$(PVM_ARCH) CC = cc default: hello hello_other hello: hello.c $(CC) $(CFLAGS) -o $@ $@.c $(LFLAGS) $(LIBS) hello_other: hello_other.c $(CC) $(CFLAGS) -o $@ $@.c $(LFLAGS) $(LIBS) clean: rm -f *.o hello hello_other