diff options
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 1ba681fd..949490fa 100644 --- a/src/Makefile +++ b/src/Makefile @@ -266,7 +266,8 @@ RUNTIME_CS := rt/sync/timer.cpp \ rt/rust_timer.cpp \ rt/circular_buffer.cpp \ rt/isaac/randport.cpp \ - rt/rust_srv.cpp + rt/rust_srv.cpp \ + rt/memory_region.cpp RUNTIME_HDR := rt/globals.h \ rt/rust.h \ @@ -285,7 +286,9 @@ RUNTIME_HDR := rt/globals.h \ rt/util/hash_map.h \ rt/sync/sync.h \ rt/sync/timer.h \ - rt/rust_srv.h + rt/rust_srv.h \ + rt/memory_region.h \ + rt/memory.h RUNTIME_INCS := -Irt/isaac -Irt/uthash RUNTIME_OBJS := $(RUNTIME_CS:.cpp=$(CFG_OBJ_SUFFIX)) |