diff options
| -rw-r--r-- | ext/Makefile | 2 | ||||
| -rw-r--r-- | pyecsca/codegen/render.py | 2 |
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)) |
