aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJán Jančár2022-12-28 16:50:18 +0100
committerGitHub2022-12-28 16:50:18 +0100
commit6f770fdac1d72eae88f0bf24f080362b07a2dd52 (patch)
treed7d5039a21f3a1c1b434637f8ab8be5c15dbd905
parent2dc4ecc580ac64f1edbb0b12316b4d11d7f2fab6 (diff)
parent9d04d9e07d199bf88aaa92f4719c8c38d0c82258 (diff)
downloadpyecsca-codegen-6f770fdac1d72eae88f0bf24f080362b07a2dd52.tar.gz
pyecsca-codegen-6f770fdac1d72eae88f0bf24f080362b07a2dd52.tar.zst
pyecsca-codegen-6f770fdac1d72eae88f0bf24f080362b07a2dd52.zip
Merge pull request #1 from J08nY/fix/some-cleanups
Cleanup some build artifacts that are not used anymore.
-rw-r--r--ext/Makefile2
-rw-r--r--pyecsca/codegen/render.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/Makefile b/ext/Makefile
index f3216ac..651303b 100644
--- a/ext/Makefile
+++ b/ext/Makefile
@@ -45,4 +45,4 @@ stm32f3: tommath_dir tommath_headers
$(MAKE) -C libtommath
cp libtommath/$(LIBNAME) ../pyecsca/codegen/tommath/$(LIBNAME)
-.PHONY: all host stm32f0 stm32f3 xmega tommath_dir tommath_headers help clean
+.PHONY: all host stm32f0 stm32f3 tommath_dir tommath_headers help clean
diff --git a/pyecsca/codegen/render.py b/pyecsca/codegen/render.py
index 2649073..ce287d1 100644
--- a/pyecsca/codegen/render.py
+++ b/pyecsca/codegen/render.py
@@ -211,7 +211,7 @@ def render(config: DeviceConfiguration) -> Tuple[str, str, str]:
:return:
"""
temp = tempfile.mkdtemp()
- symlinks = ["asn1", "bn", "hal", "hash", "mult", "prng", "simpleserial", "tommath", "fat.h",
+ symlinks = ["asn1", "bn", "hal", "hash", "prng", "simpleserial", "tommath", "fat.h",
"rand.h", "point.h", "curve.h", "mult.h", "formulas.h", "action.h", "Makefile.inc"]
for sym in symlinks:
os.symlink(resource_filename("pyecsca.codegen", sym), path.join(temp, sym))