17 lines
340 B
Makefile
Raw Normal View History

2025-12-17 12:15:17 +01:00
default:
just build
# Configure the build directory (run this once, or whenever CMake config changes)
configure:
2025-12-18 10:32:52 +01:00
cmake -S . -B build
2025-12-17 12:15:17 +01:00
build:
cmake --build build --parallel --target blockchainmodulelib
2025-12-17 17:10:59 +01:00
nix:
nix build path:./#debug -L
2025-12-17 12:15:17 +01:00
clean:
cmake --build build --target clean
2025-12-18 10:32:52 +01:00
rm libblockchainmodulelib.so || true