echo "Compile the reorder program..."
make
echo "Compile the combine program..."
g++ -c combine.cpp
g++ -o combine combine.o
echo "Compile the auth_subset program..."
g++ -c auth_subset.cpp
g++ -o auth_subset auth_subset.o
echo "Clean the directory..."
rm *.o
echo "Done!"
