diff options
author | Damien George <damien.p.george@gmail.com> | 2017-03-13 21:24:21 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-03-13 21:24:28 +1100 |
commit | a7a2344c9df8ed8cba48e6947d15653450f953ba (patch) | |
tree | 5572e15c8546c82410fe29e9b23fa1f804e02849 /qemu-arm/Makefile | |
parent | 643876fb77d45540e5b82f450a7907f39ec95c6a (diff) | |
download | micropython-a7a2344c9df8ed8cba48e6947d15653450f953ba.tar.gz micropython-a7a2344c9df8ed8cba48e6947d15653450f953ba.zip |
qemu-arm: Add basic uos module with generic VFS capabilities.
Diffstat (limited to 'qemu-arm/Makefile')
-rw-r--r-- | qemu-arm/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qemu-arm/Makefile b/qemu-arm/Makefile index dce739fc90..61fc243642 100644 --- a/qemu-arm/Makefile +++ b/qemu-arm/Makefile @@ -36,10 +36,12 @@ LDFLAGS= --specs=nano.specs --specs=rdimon.specs -Wl,--gc-sections -Wl,-Map=$(@: SRC_C = \ main.c \ + moduos.c \ modmachine.c \ SRC_TEST_C = \ test_main.c \ + moduos.c \ modmachine.c \ LIB_SRC_C = $(addprefix lib/,\ |