aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorYour Name <agrawalshagun07@gmail.com>2025-03-16 18:10:30 +0530
committerYour Name <agrawalshagun07@gmail.com>2025-03-16 18:10:30 +0530
commit18ae507a42c1e45b6e552fe95c675d1e4db58737 (patch)
treeb639931be792de24fd2570a08ad6bcf79042b159 /README.md
parent32499638cef3c49ff686b19b5708d6b08712c526 (diff)
Update readme, remove unused files
Diffstat (limited to 'README.md')
-rw-r--r--README.md24
1 files changed, 12 insertions, 12 deletions
diff --git a/README.md b/README.md
index fda821a..730ecda 100644
--- a/README.md
+++ b/README.md
@@ -23,13 +23,13 @@ bb tasks
The following tasks are available:
-clean Removes target folder.
-run-main Run main
-nrepl Starts a nrepl session.
-storm Starts a nrepl session with storm debugger.
-build-uberjar Builds uberjar
-run-uberjar Run uberjar
-build-native Builds native image
+clean Removes target folder.
+nrepl Starts a nrepl session.
+storm Starts a nrepl session with storm debugger.
+cli:run:main Run's main CLI function.
+cli:build:jar Builds uberjar for CLI.
+cli:run:jar Runs CLI jar.
+cli:build:native Builds native image for CLI.
```
@@ -38,19 +38,19 @@ build-native Builds native image
To build native image, run:
``` sh
-bb build-native
+bb cli:build:native
```
-This produces a binary `cljcc` at `/target/cljcc`. Pass the path to the C file.
+This produces a binary `cljcc-cli` at `/target/cli`. Pass the path to the C file.
``` sh
-./target/cljcc/cljcc "path/to/file.c"
+./target/cli/cljcc-cli "path/to/file.c"
```
-## Run
+## Run Jar
``` sh
-bb run-main "path/to/file.c"
+bb cli:run:jar
```
## References