CC=gcc

all: getkcore

getkcore: getkcore.c
	gcc -o getkcore getkcore.c -Wall -Wextra

clean:
	rm getkcore
