aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 144a423..a2b3e94 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,14 @@
CFLAGS += -Wall -Wextra -O2
LDFLAGS += -lssl -lcrypto -lpthread
-all: sand-leek
+all: sand-leek sand-leek-cl
sand-leek: sand-leek.o onion_base32.o key_update.o
$(CC) -o $@ $^ $(LDFLAGS)
+sand-leek-cl: trampoline.o
+ $(CC) -o $@ $^ $(LDFLAGS)
+
clean:
rm -f sand-leek *.o