#This Makefile compiles the TPC-H generator and auxiliary C programs used in shell scripts of the experiments.

all: 
	gcc data/tpch/add_probability.c -o data/tpch/add_probability
	gcc results/average.c -o results/average
	cd data/tpch; \
	make

clean:
	rm -f data/tpch/add_probability
	rm -f results/average     
	cd data/tpch; \
	make clean

