aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: f7ee08ba9758c1949f20a72e0d64df6bf016b93c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CFLAGS += -Wall -Wextra -O2 -mssse3
LDFLAGS += -lssl -lcrypto -lpthread

all: sand-leek

sand-leek: sand-leek.o onion_base32.o

clean:
	rm -vf sand-leek *.o

.PHONY: all clean