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