blob: 74f52b258b385ac31006144357ebe0bfaf15eed5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
all: measurement
gcm.cache: Makefile
rm -Rf gcm.cache
# g++ -std=c++20 -fmodules-ts -x c++-system-header chrono
# g++ -std=c++20 -fmodules-ts -x c++-system-header vector
# g++ -std=c++20 -fmodules-ts -x c++-system-header iostream
# g++ -std=c++20 -fmodules-ts -x c++-system-header algorithm
# g++ -std=c++20 -fmodules-ts -x c++-system-header string
# g++ -std=c++20 -fmodules-ts -x c++-system-header thread
measurement: measurement.cc Makefile
#gcm.cache
# g++ -Wall -Werror -Wextra -Wconversion -std=c++20 -fmodules-ts measurement.cc -o measurement
g++ -O2 -Wall -Werror -Wextra -Wconversion -std=c++20 measurement.cc -o measurement
|