aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--justfile7
1 files changed, 6 insertions, 1 deletions
diff --git a/justfile b/justfile
index 2db8db4..db6429f 100644
--- a/justfile
+++ b/justfile
@@ -1,7 +1,12 @@
alias b:= build
alias d:= dev
+alias wd:= windows-dev
+set windows-shell := ["powershell.exe", "-NoLogo", "-Command"]
dev:
nodemon --exec "gcc -o cdoku main.c && ./cdoku" ./main.c
+
+windows-dev:
+ nodemon --exec "gcc -o cdoku main.c && cdoku" main.c
build:
- gcc -o cdoku main.c && ./cdoku
+ gcc -o cdoku main.c