9 lines
No EOL
119 B
Makefile
9 lines
No EOL
119 B
Makefile
.PHONY: all
|
|
|
|
all: lc_openmp lc_pthreads
|
|
|
|
lc_openmp: lc_openmp.c
|
|
gcc -o $@ $<
|
|
|
|
lc_pthreads: lc_pthreads.c
|
|
gcc -o $@ $<
|