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

all: sand-leek

sand-leek: sand-leek.o onion_base32.o key_update.o
	$(CC) -o $@ $^ $(LDFLAGS)

clean:
	rm -vf sand-leek *.o

test:
	./test.sh

.PHONY: all clean test