diff options
author | amelia <[email protected]> | 2022-11-28 09:54:56 -0600 |
---|---|---|
committer | amelia <[email protected]> | 2022-11-28 09:54:56 -0600 |
commit | 80c44143c6bdfe6bfa7c17280f29a590bd2428ff (patch) | |
tree | 9f6ce6032a55d2c9f4e0a84bb8efc82a27cef055 /justfile | |
parent | 8a331c79f90c47980e4abc8a043c83264593c3aa (diff) |
main.c
Diffstat (limited to 'justfile')
-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 |