diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-03 14:03:48 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-03 14:03:48 +0000 |
commit | 66028ab6dcd1b2ec9504c3473d817649935a4a1e (patch) | |
tree | c441ee4d665b3218e235dec24dd5a66a6fe050ef /unix-cpy | |
parent | aae7847508e2a9555ad3276c5cd4f42b2e66686c (diff) |
Basic implementation of import.
import works for simple cases. Still work to do on finding the right
script, and setting globals/locals correctly when running an imported
function.
Diffstat (limited to 'unix-cpy')
-rw-r--r-- | unix-cpy/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unix-cpy/Makefile b/unix-cpy/Makefile index 9399a765c..0f20fe31c 100644 --- a/unix-cpy/Makefile +++ b/unix-cpy/Makefile @@ -47,6 +47,7 @@ PY_O = \ objtuple.o \ objtype.o \ builtin.o \ + builtinimport.o \ vm.o \ showbc.o \ repl.o \ |