Include ed25519 and sha512 C language implementation.
[brdnet.git] / ed25519 / Makefile
blob2959ca9026605a784235717be30da7af47219a93
1 # Every C project should include Makfile.
2 # Take this simple one, using implicit '%.c: %.o' rules.
3 # I dont use '.a' files, but building them is convinient.
4 all: libed25519.a libsha512.a
5 libed25519.a: sc.o fe.o ge.o sign.o verify.o key_exchange.o
6 $(AR) -rcs $@ $^
7 libsha512.a: sha512.o
8 $(AR) -rcs $@ $^