Chromium Code Reviews| Index: Makefile.standalone |
| diff --git a/Makefile.standalone b/Makefile.standalone |
| index f06ec157bda15388489b4a20587d0a383d4974c8..7ef39b6911823e75c25ce0b86f53e30306c9b2c3 100644 |
| --- a/Makefile.standalone |
| +++ b/Makefile.standalone |
| @@ -418,12 +418,15 @@ ifeq ($(TARGET),arm32) |
| SPEC := -O2 --filetype=asm |
| endif |
| -%.spec2k: % $(OBJDIR)/pnacl-sz make_symlink runtime |
| +%.spec2k: % |
|
Jim Stichnoth
2015/11/11 18:55:04
As discussed offline, consider reverting this Make
John
2015/11/11 22:19:44
Done.
|
| ./pydir/szbuild_spec2k.py -v --force --target=$(TARGETFLAG) $(SPEC) $< |
| ( cd ../../../tests/spec2k; \ |
| ./run_all.sh RunTimedBenchmarks $(SETUP) train $< ) |
| -check-spec: $(ALLSPEC:=.spec2k) |
| +where-am-i = $(CURDIR)/$(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)) |
| +check-spec: $(OBJDIR)/pnacl-sz |
| + +make -f $(call where-am-i) make_symlink |
| + +make -f $(call where-am-i) TARGETFLAG='$(TARGETFLAG)' SPEC='$(SPEC)' ALLSPEC='$(ALLSPEC)' $(ALLSPEC:=.spec2k) |
|
Jim Stichnoth
2015/11/11 18:55:04
80-col
John
2015/11/11 22:19:44
N/A
|
| check: check-lit check-unit check-xtest |