csci5451/assignments/01/Makefile
2023-09-22 23:37:36 -05:00

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 $@ $<