PREFIX ?= /usr/local
DEBUG ?= 0
VERBOSE ?= 0
INSTALL_DEPS ?= 0
BUILD_DOCS ?= 0
NO_COLOR ?= 0
BUILD_BINDINGS ?= 0
CMAKE := $(shell command -v cmake 2> /dev/null)
CARGO := $(shell command -v cargo 2> /dev/null)
PYTHON := $(shell command -v python3 2> /dev/null)
NPM := $(shell command -v npm 2> /dev/null)
BUILD_DIR := build
RELEASE_DIR := target/release
DEBUG_DIR := target/debug
ifeq ($(NO_COLOR), 0)
GREEN := \033[0;32m
YELLOW := \033[0;33m
RED := \033[0;31m
BLUE := \033[0;34m
NC := \033[0m else
GREEN :=
YELLOW :=
RED :=
BLUE :=
NC :=
endif
.PHONY: all
all: info c-lib rust-lib bindings
.PHONY: everything
everything: all examples tests docs
.PHONY: bindings
bindings: python nodejs
.PHONY: info
info:
@echo -e "${BLUE}libbitcoinpqc-bindings - Language Bindings for libbitcoinpqc${NC}"
@echo -e "${BLUE}------------------------------------------------------------${NC}"
@echo -e "${YELLOW}C library provided by git submodule at libbitcoinpqc/${NC}"
@if [ -n "$(CMAKE)" ]; then echo -e " [${GREEN}✓${NC}] CMake: $(CMAKE)"; else echo -e " [${RED}✗${NC}] CMake (required for C library)"; fi
@if [ -n "$(CARGO)" ]; then echo -e " [${GREEN}✓${NC}] Cargo: $(CARGO)"; else echo -e " [${RED}✗${NC}] Cargo (required for Rust library)"; fi
@if [ -n "$(PYTHON)" ]; then echo -e " [${GREEN}✓${NC}] Python: $(PYTHON)"; else echo -e " [${YELLOW}!${NC}] Python (optional for Python bindings)"; fi
@if [ -n "$(NPM)" ]; then echo -e " [${GREEN}✓${NC}] NPM: $(NPM)"; else echo -e " [${YELLOW}!${NC}] NPM (optional for NodeJS bindings)"; fi
@echo -e "${BLUE}------------------------------------------------------------${NC}"
@echo -e "${YELLOW}Available make targets:${NC}"
@echo -e " ${GREEN}make c-lib${NC} - Build the C library (from submodule)"
@echo -e " ${GREEN}make rust-lib${NC} - Build the Rust bindings"
@echo -e " ${GREEN}make bindings${NC} - Build Python and NodeJS bindings"
@echo -e " ${GREEN}make examples${NC} - Build and run Rust examples"
@echo -e " ${GREEN}make everything${NC} - Build all components"
@echo -e " ${GREEN}make help${NC} - Show all available targets"
@echo -e "${BLUE}------------------------------------------------------------${NC}"
.PHONY: c-lib
c-lib: cmake-configure cmake-build
.PHONY: submodule-check
submodule-check:
@test -f libbitcoinpqc/CMakeLists.txt || { \
echo -e "${RED}libbitcoinpqc submodule not initialized.${NC}"; \
echo -e "${YELLOW}Run: git submodule update --init --recursive${NC}"; \
exit 1; \
}
.PHONY: cmake-configure
cmake-configure: submodule-check
@echo -e "${BLUE}Configuring C library with CMake...${NC}"
@mkdir -p $(BUILD_DIR)
@cd $(BUILD_DIR) && cmake ../libbitcoinpqc -DCMAKE_BUILD_TYPE=$(if $(filter 1,$(DEBUG)),Debug,Release) -DCMAKE_INSTALL_PREFIX=$(PREFIX)
.PHONY: cmake-build
cmake-build:
@echo -e "${BLUE}Building C library...${NC}"
@cmake --build $(BUILD_DIR) $(if $(filter 1,$(VERBOSE)),--verbose,)
.PHONY: c-lib-test
c-lib-test:
@echo -e "${BLUE}Building and testing C library (golden vectors)...${NC}"
@cmake -B $(BUILD_DIR) -S libbitcoinpqc -DBUILD_TESTS=ON -DCMAKE_BUILD_TYPE=$(if $(filter 1,$(DEBUG)),Debug,Release)
@cmake --build $(BUILD_DIR) $(if $(filter 1,$(VERBOSE)),--verbose,)
@ctest --test-dir $(BUILD_DIR) --output-on-failure
.PHONY: rust-lib
rust-lib: submodule-check
@echo -e "${BLUE}Building Rust library...${NC}"
@$(CARGO) build $(if $(filter 0,$(DEBUG)),--release,)
.PHONY: examples
examples: rust-examples
.PHONY: rust-examples
rust-examples:
@echo -e "${BLUE}Building and running Rust examples...${NC}"
@$(CARGO) run --example basic $(if $(filter 0,$(DEBUG)),--release,)
WASM_PACK := $(shell command -v wasm-pack 2> /dev/null)
.PHONY: wasm-build
wasm-build: submodule-check
@if [ -z "$(WASM_PACK)" ]; then \
echo -e "${RED}wasm-pack not found.${NC}"; \
echo -e "${YELLOW}Install with: cargo install wasm-pack${NC}"; \
exit 1; \
fi
@echo -e "${BLUE}Building wasm package with wasm-pack...${NC}"
@wasm-pack build
.PHONY: wasm-test
wasm-test: submodule-check
@if [ -z "$(WASM_PACK)" ]; then \
echo -e "${RED}wasm-pack not found.${NC}"; \
echo -e "${YELLOW}Install with: cargo install wasm-pack${NC}"; \
exit 1; \
fi
@echo -e "${BLUE}Running wasm integration tests with wasm-pack...${NC}"
@wasm-pack test --node
.PHONY: tests
tests: test-rust
.PHONY: test-rust
test-rust:
@echo -e "${BLUE}Running Rust tests...${NC}"
@$(CARGO) test $(if $(filter 0,$(DEBUG)),--release,)
.PHONY: sync-vectors
sync-vectors:
@echo -e "${BLUE}Syncing golden vectors from tests/fixtures/...${NC}"
@if [ -d "$(HOME)/Projects/surmount/libbitcoinpqc/.git" ]; then \
echo -e "${BLUE}C headers -> $(HOME)/Projects/surmount/libbitcoinpqc (standalone upstream)${NC}"; \
LIBBITCOINPQC_SRC="$(HOME)/Projects/surmount/libbitcoinpqc" python3 scripts/sync-golden-vectors.py; \
else \
echo -e "${BLUE}C headers -> libbitcoinpqc submodule (no standalone upstream found)${NC}"; \
python3 scripts/sync-golden-vectors.py; \
fi
.PHONY: bench
bench:
@echo -e "${BLUE}Running benchmarks...${NC}"
@$(CARGO) bench --features bench
.PHONY: docs
docs:
ifeq ($(BUILD_DOCS), 1)
@echo -e "${BLUE}Building documentation...${NC}"
@$(CARGO) doc --no-deps
@echo -e "${GREEN}Documentation built in target/doc/bitcoinpqc/index.html${NC}"
else
@echo -e "${YELLOW}Skipping documentation build (use BUILD_DOCS=1 to enable)${NC}"
endif
.PHONY: python
python: rust-lib
@echo -e "${BLUE}Building Python bindings...${NC}"
@if [ -n "$(PYTHON)" ]; then \
echo -e "${YELLOW}Creating a Python virtual environment...${NC}"; \
$(PYTHON) -m venv python/.venv || { echo -e "${RED}Failed to create virtual environment${NC}"; exit 1; }; \
echo -e "${GREEN}Virtual environment created at python/.venv${NC}"; \
echo -e "${YELLOW}Installing Python bindings in virtual environment...${NC}"; \
. python/.venv/bin/activate && cd python && $(PYTHON) -m pip install -e . && \
echo -e "${GREEN}Python bindings installed successfully in virtual environment${NC}"; \
echo -e "${YELLOW}To use the bindings, activate the virtual environment:${NC}"; \
echo -e " source python/.venv/bin/activate"; \
else \
echo -e "${RED}Python not found, skipping Python bindings${NC}"; \
fi
.PHONY: nodejs
nodejs: rust-lib
@echo -e "${BLUE}Building NodeJS bindings...${NC}"
@if [ -n "$(NPM)" ]; then \
cd nodejs && $(NPM) install && $(NPM) run build; \
else \
echo -e "${RED}NPM not found, skipping NodeJS bindings${NC}"; \
fi
.PHONY: install
install: install-c install-rust
.PHONY: install-c
install-c: c-lib
@echo -e "${BLUE}Installing C library to $(PREFIX)...${NC}"
@cmake --install $(BUILD_DIR)
.PHONY: install-rust
install-rust: rust-lib
@echo -e "${BLUE}Installing Rust library...${NC}"
@$(CARGO) install --path .
.PHONY: clean
clean: clean-c clean-submodule clean-rust clean-bindings
.PHONY: clean-c
clean-c:
@echo -e "${BLUE}Cleaning C library build files...${NC}"
@rm -rf $(BUILD_DIR)
.PHONY: clean-submodule
clean-submodule:
@echo -e "${BLUE}Cleaning stray build artifacts inside libbitcoinpqc submodule...${NC}"
@rm -rf libbitcoinpqc/build libbitcoinpqc/Testing
.PHONY: clean-rust
clean-rust:
@echo -e "${BLUE}Cleaning Rust library build files...${NC}"
@$(CARGO) clean
.PHONY: clean-bindings
clean-bindings:
@echo -e "${BLUE}Cleaning language bindings...${NC}"
@if [ -d "python/build" ]; then rm -rf python/build; fi
@if [ -d "nodejs/dist" ]; then rm -rf nodejs/dist; fi
.PHONY: help
help:
@echo -e "${BLUE}libbitcoinpqc-bindings Makefile Help${NC}"
@echo -e "${BLUE}------------------------------------${NC}"
@echo -e "Main targets:"
@echo -e " ${GREEN}all${NC} - Build C library, Rust bindings, and language bindings (default)"
@echo -e " ${GREEN}c-lib${NC} - Build the C library (from submodule)"
@echo -e " ${GREEN}c-lib-test${NC} - Build C library with tests and run ctest"
@echo -e " ${GREEN}rust-lib${NC} - Build the Rust bindings"
@echo -e " ${GREEN}bindings${NC} - Build Python and NodeJS bindings"
@echo -e " ${GREEN}python${NC} - Build Python bindings"
@echo -e " ${GREEN}nodejs${NC} - Build NodeJS bindings"
@echo -e " ${GREEN}examples${NC} - Build and run Rust examples"
@echo -e " ${GREEN}tests${NC} - Run Rust tests"
@echo -e " ${GREEN}wasm-build${NC} - Build wasm package (needs wasm-pack)"
@echo -e " ${GREEN}wasm-test${NC} - Run wasm integration tests (needs wasm-pack)"
@echo -e " ${GREEN}sync-vectors${NC} - Regenerate golden vectors from JSON fixtures"
@echo -e " ${GREEN}bench${NC} - Run benchmarks"
@echo -e " ${GREEN}docs${NC} - Build documentation"
@echo -e " ${GREEN}install${NC} - Install libraries"
@echo -e " ${GREEN}clean${NC} - Clean all build files (incl. submodule artifacts)"
@echo -e " ${GREEN}help${NC} - Display this help message"
@echo -e ""
@echo -e "Developer targets:"
@echo -e " ${GREEN}dev${NC} - Run format and lint"
@echo -e " ${GREEN}format${NC} - Format Rust code"
@echo -e " ${GREEN}lint${NC} - Lint Rust code with clippy"
@echo -e " ${GREEN}dev-deps${NC} - Install development dependencies"
@echo -e ""
@echo -e "Configuration options:"
@echo -e " ${YELLOW}DEBUG=1${NC} - Build in debug mode (default: 0)"
@echo -e " ${YELLOW}VERBOSE=1${NC} - Show verbose build output (default: 0)"
@echo -e " ${YELLOW}PREFIX=/path${NC} - Installation prefix (default: /usr/local)"
@echo -e " ${YELLOW}BUILD_DOCS=1${NC} - Build documentation (default: 0)"
@echo -e " ${YELLOW}NO_COLOR=1${NC} - Disable colored output (default: 0)"
.PHONY: fix-warnings
fix-warnings:
@echo -e "${BLUE}Fixing CRYPTO_ALGNAME redefinition warnings...${NC}"
@echo -e "${YELLOW}This functionality has been removed.${NC}"
@echo -e "${GREEN}Please edit CMakeLists.txt manually if needed.${NC}"
.PHONY: troubleshoot
troubleshoot:
@echo -e "${BLUE}libbitcoinpqc Troubleshooting${NC}"
@echo -e "${BLUE}---------------------------${NC}"
@echo -e "Common issues and solutions:"
@echo -e ""
@echo -e " ${YELLOW}CRYPTO_ALGNAME redefinition warnings:${NC}"
@echo -e " These are harmless but can be fixed by editing CMakeLists.txt manually"
@echo -e " Change CRYPTO_ALGNAME to CRYPTO_ALGNAME_SPHINCS in the target_compile_definitions"
@echo -e ""
@echo -e " ${YELLOW}Example compilation errors:${NC}"
@echo -e " If examples don't compile, ensure you're using the latest code."
@echo -e " Run: make clean && make"
@echo -e ""
@echo -e " ${YELLOW}Missing tools:${NC}"
@echo -e " Make sure you have all required development tools installed."
@echo -e ""
@echo -e " ${YELLOW}Python or NodeJS bindings issues:${NC}"
@echo -e " If you experience Python or NodeJS binding problems:"
@echo -e " - For Python: Check the virtual environment at python/.venv"
@echo -e " - For NodeJS: Check the build logs in nodejs/build"
@echo -e " You can build bindings separately with 'make python' or 'make nodejs'"
@echo -e ""
@echo -e " ${YELLOW}Terminal color issues:${NC}"
@echo -e " If you see raw escape sequences (like \\033[0;32m), run with NO_COLOR=1"
@echo -e ""
@echo -e " ${YELLOW}For more detailed help:${NC}"
@echo -e " Check the README.md or open an issue on GitHub."
.PHONY: dev
dev: format lint
.PHONY: format
format:
@echo -e "${BLUE}Formatting code...${NC}"
@if [ -n "$(CARGO)" ]; then \
$(CARGO) fmt; \
echo -e "${GREEN}Rust code formatted${NC}"; \
else \
echo -e "${YELLOW}Cargo not found, skipping Rust formatting${NC}"; \
fi
.PHONY: lint
lint:
@echo -e "${BLUE}Linting code...${NC}"
@if [ -n "$(CARGO)" ]; then \
$(CARGO) clippy; \
echo -e "${GREEN}Rust code linted${NC}"; \
else \
echo -e "${YELLOW}Cargo not found, skipping Rust linting${NC}"; \
fi
.PHONY: dev-deps
dev-deps:
@echo -e "${BLUE}Installing development dependencies...${NC}"
@if [ -n "$(CARGO)" ]; then \
rustup component add clippy rustfmt; \
echo -e "${GREEN}Rust development tools installed${NC}"; \
fi