chip8/Makefile
2024-01-27 12:20:21 +13:00

9 lines
253 B
Makefile

emulator: emulator.c
gcc emulator.c -o emulator -Iinclude -g -lraylib -lGL -lm -lpthread -ldl -lrt -lX11
inspector: inspector.c
gcc inspector.c -o inspector -Iinclude -g
hello: hello.asm
c8asm hello.asm -o hello
run: hello emulator
./emulator hello