mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
11 lines
215 B
Makefile
11 lines
215 B
Makefile
.PHONY: all
|
|
all: hellothreads5
|
|
|
|
hellothreads5: hellothreads5.cpp
|
|
g++-15 -std=c++23 -g -pthread -o hellothreads5 hellothreads5.cpp
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f hellothreads5 hellothreads5.o Digraph* DirectedGraph*
|
|
|