all: init hist split

init: init.cc
	g++ -lz init.cc -o init

hist: hist.cc
	g++ -lm hist.cc -o hist

split: split.c
	cc -lz split.c -o split
