CC=gcc

default: fix_hello_improved

clean:
	rm -f fix_hello_improved

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