bitcoinpqc 0.1.2

Post-Quantum Cryptographic signature algorithms for Bitcoin (BIP-360)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CC := gcc
CFLAGS := -Wall -Wextra -g
INCLUDE := -I../../include
LDFLAGS := -L../../target/debug/build/libbitcoinpqc-*/out/lib
LDLIBS := -lbitcoinpqc

.PHONY: all clean

all: ml_dsa_test

ml_dsa_test: ml_dsa_test.c
	$(CC) $(CFLAGS) $(INCLUDE) -o $@ $< $(LDFLAGS) $(LDLIBS)

clean:
	rm -f ml_dsa_test