csci5451/assignments/01/Makefile

9 lines
119 B
Makefile
Raw Normal View History

2023-09-23 04:37:36 +00:00
.PHONY: all
all: lc_openmp lc_pthreads
lc_openmp: lc_openmp.c
gcc -o $@ $<
lc_pthreads: lc_pthreads.c
gcc -o $@ $<