diff options
| author | J08nY | 2019-11-27 20:34:58 +0100 |
|---|---|---|
| committer | J08nY | 2019-11-27 20:34:58 +0100 |
| commit | 32a4874abfbaff8cb4ee2d31fe71bcc3499e52dc (patch) | |
| tree | 1203a322d7488ef51b4de2d34c6e0c2871ea68a5 /pyecsca/codegen/Makefile | |
| parent | bb00fee9702155586e674b9d6a3b838bd54baac2 (diff) | |
| download | pyecsca-codegen-32a4874abfbaff8cb4ee2d31fe71bcc3499e52dc.tar.gz pyecsca-codegen-32a4874abfbaff8cb4ee2d31fe71bcc3499e52dc.tar.zst pyecsca-codegen-32a4874abfbaff8cb4ee2d31fe71bcc3499e52dc.zip | |
Reorganize files, implement proper main.
Diffstat (limited to 'pyecsca/codegen/Makefile')
| -rw-r--r-- | pyecsca/codegen/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pyecsca/codegen/Makefile b/pyecsca/codegen/Makefile index 13122d0..d0dab03 100644 --- a/pyecsca/codegen/Makefile +++ b/pyecsca/codegen/Makefile @@ -1,12 +1,12 @@ TARGET = pyecsca-codegen -SRC += main.c bn.c ecdh.c ecdsa.c asn1.c hash/hash.c mult/mult.c prng/prng.c +SRC += main.c bn/bn.c asn1/asn1.c hash/hash.c mult/mult.c prng/prng.c -CDEFS += -DHASH=HASH_SHA224 +CDEFS += -DHASH=HASH_SHA224 -DMOD_RAND=MOD_RAND_SAMPLE -MKDIR_LIST += hash prng mult +MKDIR_LIST += hash prng mult asn1 bn -EXTRAINCDIRS += hash prng mult ../../ext/libtommath/ +EXTRAINCDIRS += hash prng mult asn1 bn ../../ext/libtommath/ LDFLAGS += ../../ext/libtommath/libtommath.a |
