CC=gcc

default: checkcall

clean:
	rm -f checkcall

checkcall:
	$(CC) -o checkcall checkcall.c -lkvm
