CC ?= clang
CFLAGS=-fopenmp
LDFLAGS=-fopenmp

BIN=ompt_test_lock ompt_test_task ompt_test_parallel_for test_ompt

all: $(BIN)

clean:
	rm -f $(BIN)
