From 5e2dcf4aff14e48c8ca49b1ea1bb200abc43fffc Mon Sep 17 00:00:00 2001 From: David Phillips Date: Wed, 27 Sep 2017 21:57:03 +1300 Subject: Import my CL trampoline from fractal-gen project --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit v1.1