mirror of
				https://github.com/yggdrasil-network/yggdrasil-go.git
				synced 2025-11-04 03:05:07 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			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
 |