all : statistic byte_at common different statistic: statistic.cpp g++ -o $@ $< byte_at: byte_at.cpp g++ -o $@ $< common: common.cpp g++ -o $@ $< different: different.cpp g++ -o $@ $< clean : rm -f *~ rm -f *.o rm -f statistic byte_at common different