blob: 8bab294453aecce41a7ec4bafaac004abc8a1ba0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
all: hello hello-cpp20
hello: hello.cc
g++ -std=c++20 -fmodules-ts -x c++-system-header iostream
g++ -std=c++20 -fmodules-ts hello.cc -o hello
hello-cpp20: hello-cpp20.cc
g++ -std=c++20 -fmodules-ts -x c++-system-header iostream
g++ -std=c++20 -fmodules-ts -x c++-system-header string
g++ -std=c++20 -fmodules-ts hello-cpp20.cc -o hello-cpp20
|