From 608a3598f6eb5be4cb2305a4eb0b1b721d0617a6 Mon Sep 17 00:00:00 2001 From: Jan Huwald Date: Sun, 20 May 2012 17:14:22 +0200 Subject: Makefile: add locally built NaCL library diff --git a/Makefile b/Makefile index b4d556b..1509435 100644 --- a/Makefile +++ b/Makefile @@ -5,3 +5,11 @@ all: $(BIN) .PHONY: clean clean: rm -f $(BIN) *~ + +nacl/include: + mkdir nacl + wget http://hyperelliptic.org/nacl/nacl-20110221.tar.bz2 -O - | tar jxf - -C nacl + cd nacl/* && ./do + mkdir nacl/include + ln -s ../../$$(ls -d nacl/*/build/*/include/*/ | head) nacl/include/nacl + ln -s ../$$(ls -d nacl/*/build/*/lib/*/ | head) nacl/lib -- cgit v0.10.1