CC=gcc

default: fix_hello

clean:
	rm -f fix_hello

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