diff --git a/SConscript b/SConscript
index 7131823365d8df2976c490d3bc6dceec6eebbf89..5563464dc094b903e8a9ca1650e10ddb175459c5 100644
--- a/SConscript
+++ b/SConscript
@@ -59,4 +59,13 @@ lib=myenv.SharedLibrary("push64_relocs", Split(files))
 install=myenv.Install("$ZIPR_INSTALL/plugins/", lib)
 Default(install)
 
+pedi = Command( target = "./testoutput",
+                source = "./SConscript",
+                action = "cd "+os.environ['ZIPR_INSTALL']+" ; " +os.environ['PEDI_HOME']+"/pedi -m manifest.txt ; cd -" )
+
+Depends (pedi, install)
+Default( pedi )
+
+
+