6 lines
162 B
Bash
6 lines
162 B
Bash
# Compile the debugger
|
|
gcc -g -o main -I./include -I./linenoise main.c src/debugger.c linenoise/linenoise.c
|
|
|
|
# Compile the test program
|
|
gcc -g -o target target.c
|