1 2 3 4 5 6 7
alias b:= build alias d:= dev dev: nodemon --exec "gcc -o cdoku main.c && ./cdoku" ./main.c build: gcc -o cdoku main.c && ./cdoku