LIBS = -L$(PVM_ROOT)/lib/$(PVM_ARCH) -I$(PVM_ROOT)/include -lpvm3 GLIBS = ${LIBS} -lgpvm3 all: hello hello_other hello_combined hello_combined_swarm hello_combined_hosts hello: hello.c gcc -Wall hello.c $(LIBS) -o hello hello_other: hello_other.c gcc -Wall hello_other.c $(LIBS) -o hello_other hello_combined: hello_combined.c gcc -Wall hello_combined.c $(LIBS) -o hello_combined hello_combined_swarm: hello_combined_swarm.c gcc -Wall hello_combined_swarm.c $(LIBS) -o hello_combined_swarm hello_combined_hosts: hello_combined_hosts.c gcc -Wall hello_combined_hosts.c $(LIBS) -o hello_combined_hosts host: cp -f hello ${HOME}/pvm3/bin/$(PVM_ARCH)/ cp -f hello_other ${HOME}/pvm3/bin/$(PVM_ARCH)/ cp -f hello_combined ${HOME}/pvm3/bin/$(PVM_ARCH)/ cp -f hello_combined_swarm ${HOME}/pvm3/bin/$(PVM_ARCH)/ cp -f hello_combined_hosts ${HOME}/pvm3/bin/$(PVM_ARCH)/ bourbaki: cp -f hello /projects/bourbaki${HOME}/pvm3/bin/$(PVM_ARCH)/ cp -f hello_other /projects/bourbaki${HOME}/pvm3/bin/$(PVM_ARCH)/ cp -f hello_combined /projects/bourbaki${HOME}/pvm3/bin/$(PVM_ARCH)/ cp -f hello_combined_swarm /projects/bourbaki${HOME}/pvm3/bin/$(PVM_ARCH)/ cp -f hello_combined_hosts /projects/bourbaki${HOME}/pvm3/bin/$(PVM_ARCH)/ clean: rm -f hello hello_other hello_combined hello_combined_swarm hello_combined_hosts