aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorquapka2025-06-20 22:56:33 +0200
committerquapka2025-06-20 22:56:33 +0200
commit8e79faeab09aad2b8d6861dd2baa95b419255c90 (patch)
tree11cf6f4d056e717afd4dc018d1b42fe212aa298b /README.md
parent07c5efe15e2ca88fe3818c9653a2a425923cb1c0 (diff)
downloadECTester-8e79faeab09aad2b8d6861dd2baa95b419255c90.tar.gz
ECTester-8e79faeab09aad2b8d6861dd2baa95b419255c90.tar.zst
ECTester-8e79faeab09aad2b8d6861dd2baa95b419255c90.zip
Diffstat (limited to 'README.md')
-rw-r--r--README.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/README.md b/README.md
index 5c43f2d..ab4ec9e 100644
--- a/README.md
+++ b/README.md
@@ -358,6 +358,26 @@ with a given library version and arguments do:
nix run "?submodules=1#libressl.v392" -- test default LibreSSL
```
+To build the JavaCard applets:
+```shell
+nix build "?submodules=1#applets"
+# or individually
+nix build "?submodules=1#applet222"
+nix build "?submodules=1#applet305"
+nix build "?submodules=1#applet320"
+```
+
+To build or run the reader you can:
+```shell
+nix build '.?submodules=1#reader'
+nix run '.?submodules=1#reader'
+```
+
+If needed, you can also build the `common` library:
+```shell
+nix build '.?submodules=1#common'
+```
+
#### Gradle
```shell