aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/contrib/examples/keygen-html/Makefile
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-02-23 05:29:54 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2018-03-02 16:42:29 +0100
commit6e09a46be8cf93139cf3904e5411cf424d07c349 (patch)
tree1d05109c320bf67540351f197fc4d9a32fa56c25 /contrib/examples/keygen-html/Makefile
parentcompat: workaround netlink refcount bug (diff)
downloadwireguard-monolithic-historical-6e09a46be8cf93139cf3904e5411cf424d07c349.tar.xz
wireguard-monolithic-historical-6e09a46be8cf93139cf3904e5411cf424d07c349.zip
contrib: keygen-html: rewrite in pure javascript
Emscripten is too cumbersome. This code here is much slower, but it's shorter and simpler.
Diffstat (limited to 'contrib/examples/keygen-html/Makefile')
-rw-r--r--contrib/examples/keygen-html/Makefile6
1 files changed, 0 insertions, 6 deletions
diff --git a/contrib/examples/keygen-html/Makefile b/contrib/examples/keygen-html/Makefile
deleted file mode 100644
index a3acec0..0000000
--- a/contrib/examples/keygen-html/Makefile
+++ /dev/null
@@ -1,6 +0,0 @@
-curve25519_generate.js: src/curve25519_generate.c src/glue.js
- emcc -O2 --memory-init-file 0 --closure 1 --post-js src/glue.js -s 'EXTRA_EXPORTED_RUNTIME_METHODS=["Pointer_stringify"]' -o $@ src/curve25519_generate.c
-clean:
- rm -f curve25519_generate.js
-all: curve25519_generate.js
-.PHONY: clean all