7 lines
65 B
Makefile
7 lines
65 B
Makefile
all: run
|
|
|
|
run: segv
|
|
./segv
|
|
|
|
segv: segv.c
|
|
gcc -g -o segv segv.c
|