run: kprintf.c test.c kprintf.h
	gcc -Wall -Wextra -g kprintf.c test.c -o test
	./test

clean:
	rm -f test

.PHONY: run clean
