summaryrefslogtreecommitdiff
path: root/base64/Makefile
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2019-03-17 11:16:40 +0100
committerMiguel <m.i@gmx.at>2019-03-17 11:16:40 +0100
commitb423baf7176808b134ca45a6b19a990530853785 (patch)
tree0f049ed8a03b700888d824d1a70d4e3b48f10514 /base64/Makefile
parent9dc8556d2510b125e3449e4eceac1eb126f9179e (diff)
sort base64/
Diffstat (limited to 'base64/Makefile')
-rw-r--r--base64/Makefile13
1 files changed, 0 insertions, 13 deletions
diff --git a/base64/Makefile b/base64/Makefile
deleted file mode 100644
index 71b16ec..0000000
--- a/base64/Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
-base64: base64.hs
- #stack ghc -- -O2 base64.hs -rtsopts -prof -fprof-cafs -fprof-auto
- stack ghc -- -O2 base64.hs
-
-run: base64
- ./base64 10 100 +RTS -N2
- #cat /tmp/random.bin | ./base64 +RTS -N6 > /dev/null
-run-prof: base64prof
- cat /tmp/random.bin | ./base64prof +RTS -N6 -p -s > /dev/null
-base64prof: base64.hs
- stack ghc -- -threaded -rtsopts -prof -fprof-auto -fprof-cafs -O2 base64.hs -o base64prof
-genrandom:
- dd if=/dev/urandom of=/tmp/random.bin bs=1M count=64