all: warn.txt hbit

hbit: hbit.cpp
	g++ -g -Wall -o hbit hbit.cpp

warn.txt:  hbit.cpp
	g++ -g -Wall -o hbit hbit.cpp > warn.txt 2>&1

clean:
	rm hbit
