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