# # sample Makefile for Omni OpenMP compiler(s) with OpenMP # # B. Massingill, 09/27/2005 # # usage examples: # "make hello" to compile "hello.c" to "hello" # OMPCC = /usr/local/bin/omcc CFLAGS = $(OPTFLAGS) %: %.c $(OMPCC) -o $@ $(CFLAGS) $< -rm $@.o