LIB=/lib
uhtget:		uhtget.o
		diet gcc -nostdinc -s -o uhtget uhtget.o 
		strip -R .note -R .comment uhtget
uhtget.o:	uhtget.c
		diet -Os gcc -D_BSD_SOURCE -nostdinc -Wall -c uhtget.c
clean:	
	rm -f *.o uhtget

