mirror of
https://github.com/volatilityfoundation/volatility
synced 2026-06-08 18:04:46 +00:00
10 lines
107 B
Makefile
10 lines
107 B
Makefile
CC=gcc
|
|
|
|
all: getkcore
|
|
|
|
getkcore: getkcore.c
|
|
gcc -o getkcore getkcore.c -Wall -Wextra
|
|
|
|
clean:
|
|
rm getkcore
|