diff options
author | epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-10-18 16:10:56 +0000 |
---|---|---|
committer | epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-10-18 16:10:56 +0000 |
commit | 9c875d34ff13d82f581448ced0d9eb5b067368b9 (patch) | |
tree | b1d56c5eb4b5361a1b20f59e17be718d14276d89 /Makefile | |
parent | 7790912e6e8a64fc9161e0df26d76e695aa9f05c (diff) |
add a "most" target, and make it the default
split out of https://codereview.appspot.com/6651064/ ('gyp: generate "everything" and "most" targets instead of "all"')
tests: "make most" now works, "make" now calls "make most"
Review URL: https://codereview.appspot.com/6740045
git-svn-id: http://skia.googlecode.com/svn/trunk@5999 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -32,6 +32,7 @@ CWD := $(shell pwd) ALL_TARGETS := skia_base_libs \ bench \ gm \ + most \ SampleApp \ tests \ tools @@ -42,7 +43,7 @@ endif # Default target. This must be listed before all other targets. .PHONY: default -default: $(ALL_TARGETS) +default: most # As noted in http://code.google.com/p/skia/issues/detail?id=330 , building # multiple targets in parallel was failing. The special .NOTPARALLEL target |