Skip to content
Snippets Groups Projects
Commit 390478f4 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

reworking scons file for pedi insanity

parent 93ecc5f2
No related branches found
No related tags found
No related merge requests found
...@@ -54,16 +54,11 @@ myenv=myenv.Clone(CPPPATH=Split(cpppath), LIBS=Split(libs), LIBPATH=Split(libpat ...@@ -54,16 +54,11 @@ myenv=myenv.Clone(CPPPATH=Split(cpppath), LIBS=Split(libs), LIBPATH=Split(libpat
lib=myenv.SharedLibrary("push64_relocs", Split(files)) lib=myenv.SharedLibrary("push64_relocs", Split(files))
install=myenv.Install("$ZIPR_INSTALL/plugins/", lib) install=myenv.Install("$ZIPR_INSTALL/plugins/", lib)
Default(install) ret=[install,lib]
pedi = Command( target = "./push64-testoutput",
pedi = Command( target = "./testoutput", source = install,
source = "./SConscript", action = "echo push64; cd "+os.environ['ZIPR_INSTALL']+" ; " +os.environ['PEDI_HOME']+"/pedi -m manifest.txt ; cd -" )
action = "cd "+os.environ['ZIPR_INSTALL']+" ; " +os.environ['PEDI_HOME']+"/pedi -m manifest.txt ; cd -" ) if Dir('.').abspath == Dir('#.').abspath:
ret=ret+pedi
Depends (pedi, install) Default(ret)
Default( pedi )
ret=pedi+lib
Return('ret') Return('ret')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment