Chromium Code Reviews| Index: Makefile.standalone |
| diff --git a/Makefile.standalone b/Makefile.standalone |
| index 6df7c407aaf81411ac4df12cebaea5bc02e3ed76..82eff152781d0e61a81aac2a022329459035784c 100644 |
| --- a/Makefile.standalone |
| +++ b/Makefile.standalone |
| @@ -276,7 +276,7 @@ $(SB_OBJDIR): |
| $(OBJDIR)/unittest: $(OBJDIR) |
| @mkdir -p $@ |
| -RT_SRC := runtime/szrt.c runtime/szrt_ll.ll |
| +RT_SRC := runtime/szrt.c runtime/szrt_ll.ll runtime/szrt_profiler.c |
| RT_OBJ := build/runtime/szrt_native_x8632.o build/runtime/szrt_sb_x8632.o |
| runtime: $(RT_OBJ) |
| @@ -285,7 +285,7 @@ runtime: $(RT_OBJ) |
| # even in a parallel build. |
| .INTERMEDIATE: runtime.is.built |
| $(RT_OBJ): runtime.is.built |
| -runtime.is.built: $(RT_SRC) |
| +runtime.is.built: $(RT_SRC) pydir/build-runtime.py |
|
John
2015/06/08 21:33:16
I found it useful to have pydir/build-runtime.py a
Jim Stichnoth
2015/06/08 23:45:30
Seems harmless and actually useful this way...
|
| @echo ================ Building Subzero runtime ================ |
| ./pydir/build-runtime.py -v --pnacl-root $(PNACL_TOOLCHAIN_ROOT) |