diff options
| author | Michael Bebenita <[email protected]> | 2010-08-16 14:13:08 -0700 |
|---|---|---|
| committer | Michael Bebenita <[email protected]> | 2010-08-16 15:05:57 -0700 |
| commit | b40a9fa787dd3b7d979cdf3e156284d6667fe9d2 (patch) | |
| tree | 27b18e7280feed3adc368a0d98053f84d4fe2215 /src/Makefile | |
| parent | Absent any deep overhauls to syntax or constant-handling, hack in the ability... (diff) | |
| download | rust-b40a9fa787dd3b7d979cdf3e156284d6667fe9d2.tar.xz rust-b40a9fa787dd3b7d979cdf3e156284d6667fe9d2.zip | |
Pulled rust_srv in its own file. Some cleanup, and added varargs to assertion macros.
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 49c53331..eb479440 100644 --- a/src/Makefile +++ b/src/Makefile @@ -265,7 +265,8 @@ RUNTIME_CS := rt/sync/timer.cpp \ rt/rust_message.cpp \ rt/rust_timer.cpp \ rt/circular_buffer.cpp \ - rt/isaac/randport.cpp + rt/isaac/randport.cpp \ + rt/rust_srv.cpp RUNTIME_HDR := rt/globals.h \ rt/rust.h \ @@ -283,7 +284,8 @@ RUNTIME_HDR := rt/globals.h \ rt/util/array_list.h \ rt/util/hash_map.h \ rt/sync/sync.h \ - rt/sync/timer.h + rt/sync/timer.h \ + rt/rust_srv.h RUNTIME_INCS := -Irt/isaac -Irt/uthash RUNTIME_OBJS := $(RUNTIME_CS:.cpp=$(CFG_OBJ_SUFFIX)) |