aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2017-09-27 21:57:03 +1300
committerDavid Phillips <david@sighup.nz>2017-09-27 21:57:03 +1300
commit5e2dcf4aff14e48c8ca49b1ea1bb200abc43fffc (patch)
treec5cdb8ba8d6011659a383c8c2173f1173b105707 /Makefile
parent28e1fc9c3cb33386d7d218d654163e64ba1b48b4 (diff)
downloadsand-leek-5e2dcf4aff14e48c8ca49b1ea1bb200abc43fffc.tar.xz
Import my CL trampoline from fractal-gen project
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