11 lines
116 B
Makefile
11 lines
116 B
Makefile
|
|
PROGS := sequential threaded
|
|
|
|
all: $(PROGS)
|
|
|
|
%: %.cc
|
|
$(CXX) -o $@ -pthread -O3 $<
|
|
|
|
clean:
|
|
-rm -f $(PROGS) *~ *.o
|