aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoramelia <[email protected]>2022-11-28 09:54:56 -0600
committeramelia <[email protected]>2022-11-28 09:54:56 -0600
commit80c44143c6bdfe6bfa7c17280f29a590bd2428ff (patch)
tree9f6ce6032a55d2c9f4e0a84bb8efc82a27cef055
parent8a331c79f90c47980e4abc8a043c83264593c3aa (diff)
main.c
-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