From 80c44143c6bdfe6bfa7c17280f29a590bd2428ff Mon Sep 17 00:00:00 2001 From: amelia Date: Mon, 28 Nov 2022 09:54:56 -0600 Subject: main.c --- justfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3