mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-12-05 21:27:13 -06:00
optional functionality for writing results to the single file and extracting specific keys from it
This commit is contained in:
committed by
Alexander Khristoforov
parent
37a1506b18
commit
6a416795b7
16
Makefile.in
16
Makefile.in
@@ -26,10 +26,17 @@ MAINOBJ= \
|
||||
cpucount.c.o \
|
||||
base32_to.c.o \
|
||||
base32_from.c.o \
|
||||
base64_to.c.o \
|
||||
base64_from.c.o \
|
||||
ioutil.c.o \
|
||||
$(ED25519OBJ) \
|
||||
keccak.c.o
|
||||
|
||||
TEST_BASE64OBJ= \
|
||||
test_base64.c.o \
|
||||
base64_to.c.o \
|
||||
base64_from.c.o
|
||||
|
||||
TEST_BASE32OBJ= \
|
||||
test_base32.c.o \
|
||||
base32_to.c.o \
|
||||
@@ -48,6 +55,7 @@ TEST_ED25519OBJ= \
|
||||
|
||||
ALLO= $(sort \
|
||||
$(MAINOBJ) \
|
||||
$(TEST_BASE64OBJ) \
|
||||
$(TEST_BASE32OBJ) \
|
||||
$(TEST_BASE16OBJ) \
|
||||
$(TEST_ED25519OBJ) \
|
||||
@@ -60,7 +68,7 @@ CLEANO= $(filter %.o,$(ALLO))
|
||||
MAINLIB= -lpthread -lsodium @MAINLIB@
|
||||
TEST_ED25519LIB= -lsodium
|
||||
|
||||
EXE= mkp224o test_base32 test_base16 test_ed25519
|
||||
EXE= mkp224o test_base64 test_base32 test_base16 test_ed25519
|
||||
|
||||
default: mkp224o
|
||||
|
||||
@@ -69,6 +77,9 @@ all: $(EXE)
|
||||
mkp224o: $(MAINOBJ)
|
||||
$(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ $(MAINLIB) && $(MV) $@.tmp $@
|
||||
|
||||
test_base64: $(TEST_BASE64OBJ)
|
||||
$(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ && $(MV) $@.tmp $@
|
||||
|
||||
test_base32: $(TEST_BASE32OBJ)
|
||||
$(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ && $(MV) $@.tmp $@
|
||||
|
||||
@@ -104,6 +115,8 @@ base16_from.c.o: types.h base16.h
|
||||
base16_to.c.o: types.h base16.h
|
||||
base32_from.c.o: types.h base32.h
|
||||
base32_to.c.o: types.h base32.h
|
||||
base64_from.c.o: types.h base64.h
|
||||
base64_to.c.o: types.h base64.h
|
||||
cpucount.c.o: cpucount.h
|
||||
ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/crypto_sign.h
|
||||
ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/ed25519.h
|
||||
@@ -384,6 +397,7 @@ main.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-x86.h
|
||||
main.c.o: ed25519/ed25519-donna/ed25519-donna-impl-base.h ioutil.h filters.h
|
||||
test_base16.c.o: types.h base16.h
|
||||
test_base32.c.o: types.h base32.h
|
||||
test_base64.c.o: types.h base64.h
|
||||
test_ed25519.c.o: types.h base16.h ed25519/ed25519.h ed25519/ref10/ed25519.h
|
||||
test_ed25519.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
|
||||
test_ed25519.c.o: ed25519/ref10/crypto_int32.h ed25519/amd64-51-30k/ed25519.h
|
||||
|
||||
Reference in New Issue
Block a user