yacemu/Makefile

11 lines
116 B
Makefile
Raw Normal View History

2023-08-22 17:10:25 +00:00
build:
2023-08-31 22:17:53 +00:00
gcc ./main.c -g -lSDL2 -lGL
2023-08-22 17:10:25 +00:00
run: build
./a.out
2023-08-31 22:17:53 +00:00
debug: build
gdb ./a.out
2023-08-22 17:10:25 +00:00
format:
clang-format ./*.c -i