mirror of
https://codeberg.org/scip/twenty4.git
synced 2025-12-18 04:20:56 +01:00
initial commit
This commit is contained in:
19
sbox/Makefile
Normal file
19
sbox/Makefile
Normal file
@@ -0,0 +1,19 @@
|
||||
LDFLAGS = -g
|
||||
CFLAGS = -g -Wall -Wextra -Werror
|
||||
DST = gen-static-sbox
|
||||
OBJS = gen-static-sbox.o
|
||||
|
||||
all: $(DST)
|
||||
|
||||
$(DST): $(OBJS)
|
||||
gcc $(LDFLAGS) $(OBJS) -o $(DST)
|
||||
|
||||
%.o: %.c
|
||||
gcc -c $(CFLAGS) $*.c -o $*.o
|
||||
|
||||
clean:
|
||||
rm -f *.o $(DST)
|
||||
|
||||
|
||||
sboxes:
|
||||
cat BJNR000010949.epub | openssl aes-256-cbc -kfile BJNR000010949.pass | ./$(DST)
|
||||
Reference in New Issue
Block a user