10 lines
115 B
Makefile
10 lines
115 B
Makefile
export CC := g++-11
|
|
|
|
all: test
|
|
|
|
test:
|
|
$(CC) ldr_oc_suite.cpp test.cpp -o ./test -O2 -std=c++20
|
|
|
|
clean:
|
|
rm ./test
|