all: tinybrowser

tinybrowser: tinybrowser.c
	gcc -g -o tinybrowser tinybrowser.c

clean: 
	rm *.o > /dev/null 2>&1; rm tinybrowser > /dev/null 2>&1;