This commit is contained in:
grant-kun 2022-11-28 09:54:56 -06:00
parent 80a0689eac
commit 55324aeb8c
1 changed files with 6 additions and 1 deletions

View File

@ -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