#
#  PACE Project
#  RC Memory Tests, Value Reconciliation Tool
#
config:
	tar xvf export.tar
#
build:	Reconcile.c 
	$(CC_TARGET) $(COPT_TARGET) *.c ../Lib/*.o $(MATH_LIBRARY_LINKER_FLAG_TARGET)
	mv a.out recon
#
run:	
	env PACE_TEMP="../Tempdir" (recon > ../../results)
#
export:		
	tar cvf ./export.tar *.c *.h Makefile README
#