commit aa869ba8f72fa5f749a3d814f0b037bfff1e58a6 parent d65070ce6dea36f0f11de9b35c59499f127dde3e Author: anna <anna@brokenlove.online> Date: Sat, 31 Aug 2024 20:06:48 +0200 move build.sh to main folder - this will make it not work now! Diffstat:
A | build.sh | | | 6 | ++++++ |
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/build.sh b/build.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +for filename in *.c; do + echo "compiling $filename" + gcc -lba -lcryptanalysis -g -o "bin/$(basename $filename .c)" $filename -lcrypto +done