# # 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 OPTFLAGS = -O #-Wall -pedantic CFLAGS = $(OPTFLAGS) CCFLAGS = $(CFLAGS) %: %.c $(OMPCC) -o $@ $(CFLAGS) $<