mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-29 06:35:07 +03:00

2. added SCTP protocol and schema support 3. added set of NAS models support (Asustor, ReadyNAS, Drobo, QNAP, WD, Synology, Terramaster) 4. moved to fc00::/7 private segment 5. added Windows, MacOS and Linux UI for peers edit and current status
12 lines
458 B
Makefile
12 lines
458 B
Makefile
.PHONY: all
|
|
|
|
all: util mesh-brute-multi-curve25519 mesh-brute-multi-ed25519
|
|
|
|
util: util.c
|
|
gcc -Wall -std=c89 -O3 -c -o util.o util.c
|
|
|
|
mesh-brute-multi-ed25519: mesh-brute-multi-ed25519.c util.o
|
|
gcc -Wall -std=c89 -O3 -o mesh-brute-multi-ed25519 -lsodium mesh-brute-multi-ed25519.c util.o
|
|
|
|
mesh-brute-multi-curve25519: mesh-brute-multi-curve25519.c util.o
|
|
gcc -Wall -std=c89 -O3 -o mesh-brute-multi-curve25519 -lsodium mesh-brute-multi-curve25519.c util.o
|