Skip to content
Snippets Groups Projects
clean-all.sh 411 B
Newer Older
Anh Nguyen-Tuong's avatar
Anh Nguyen-Tuong committed
#!/bin/bash

cd $ZAFL_HOME/zipr_umbrella
Anh Nguyen-Tuong's avatar
Anh Nguyen-Tuong committed
./clean-all.sh

cd $ZAFL_HOME/libzafl
scons -c

cd $ZAFL_HOME/tools
scons -c

Anh Nguyen-Tuong's avatar
Anh Nguyen-Tuong committed

# clean up installation if this module is the root of the install.
# skip pedi cleanup if we are part of a larger project, as future builds
# won't know how to install properly.  
Anh Nguyen-Tuong's avatar
Anh Nguyen-Tuong committed
if [[ $(head -1 manifest.txt.config) == $(pwd) ]] ; then 
	$PEDI_HOME/pedi -c -m manifest.txt
fi