Moved the py files to their appropriate directory

This commit is contained in:
Pherring04 2024-12-09 14:59:29 -06:00
parent 573211e09c
commit d0316b5688
5 changed files with 6 additions and 6 deletions

View File

@ -159,7 +159,7 @@ elsif ( $build_type eq so )
if ($build_s_source) if ($build_s_source)
{ {
print "Building S_source.hh\n" ; print "Building S_source.hh\n" ;
$make_s_source = "python3 $my_path../share/trick/makefiles/build_trickify_S_source_hh.py" ; $make_s_source = "python3 $my_path../share/trick/pymods/trick/build_trickify_S_source_hh.py" ;
print(`$make_s_source`) ; print(`$make_s_source`) ;
} }
@ -167,7 +167,7 @@ if ($build_s_source)
if ($build_trickify_src_list and $full_build) if ($build_trickify_src_list and $full_build)
{ {
print "Building trickify_src_list\n" ; print "Building trickify_src_list\n" ;
$make_src_list = "python3 $my_path../share/trick/makefiles/build_trickify_src_list.py" ; $make_src_list = "python3 $my_path../share/trick/pymods/trick/build_trickify_src_list.py" ;
print(`$make_src_list`) ; print(`$make_src_list`) ;
} }
@ -213,7 +213,7 @@ if ($full_build)
if($build_trickify_obj_list and $full_build) if($build_trickify_obj_list and $full_build)
{ {
print "Building trickify_obj_list\n" ; print "Building trickify_obj_list\n" ;
$make_obj_list = "python3 $my_path../share/trick/makefiles/build_trickify_obj_list.py" ; $make_obj_list = "python3 $my_path../share/trick/pymods/trick/build_trickify_obj_list.py" ;
print(`$make_obj_list`) ; print(`$make_obj_list`) ;
} }

View File

@ -3,7 +3,7 @@ import os
path = "" path = ""
if "TRICK_HOME" in os.environ: if "TRICK_HOME" in os.environ:
path = os.getenv("TRICK_HOME") path = os.getenv("TRICK_HOME")
path += "/share/trick/makefiles/build_trickify.py" path += "/share/trick/pymods/trick/build_trickify.py"
exec(open(path).read()) exec(open(path).read())

View File

@ -3,7 +3,7 @@ import os
path = "" path = ""
if "TRICK_HOME" in os.environ: if "TRICK_HOME" in os.environ:
path = os.getenv("TRICK_HOME") path = os.getenv("TRICK_HOME")
path += "/share/trick/makefiles/build_trickify.py" path += "/share/trick/pymods/trick/build_trickify.py"
exec(open(path).read()) exec(open(path).read())

View File

@ -3,7 +3,7 @@ import os
path = "" path = ""
if "TRICK_HOME" in os.environ: if "TRICK_HOME" in os.environ:
path = os.getenv("TRICK_HOME") path = os.getenv("TRICK_HOME")
path += "/share/trick/makefiles/build_trickify.py" path += "/share/trick/pymods/trick/build_trickify.py"
exec(open(path).read()) exec(open(path).read())