(…)
Longwang is free software: you can redistribute it and/or modify it under the terms of the BSD 3-Clause “New” or “Revised” License as published by The Regents of the University of California.
Longwang is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the BSD 3-Clause “New” or “Revised” License for more details.
You should have received a copy of the BSD 3-Clause “New” or “Revised” License along with Longwang. If not, see https://opensource.org/license/BSD-3-Clause.
(…)
(…)
mkdir -p build
for i in src/*.cc; do
g++ -I include -std=c++20 -Wall -Wextra -pedantic -Werror -c $i -o "build/$(basename ${i%.cc}).o"
done
ar -rc liblongwang.a build/*.o