This repository has been archived on 2025-02-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ics_cli/makefile
T

10 lines
104 B
Makefile

.PHONY: debug
debug:
gcc -Wall -g ./src/*.c
gdb a.out
.PHONY: run
run:
gcc -Wall ./src/*.c
./a.out