diff options
-rw-r--r-- | justfile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 |