~epii/+junk/chromium-browser

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: epii
  • Date: 2014-06-05 04:13:37 UTC
  • Revision ID: public.epii@gmail.com-20140605041337-ppmg8diryvcpplao
modified ninja command.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
JOBS ?= 20
 
3
NINJA = ninja -k0 -j$(JOBS)
3
4
 
4
5
.PHONY: all release debug sync
5
6
 
6
7
all:
7
8
 
8
9
release:
9
 
        cd src && ninja -C out/Release -j$(JOBS)
 
10
        cd src && $(NINJA) -C out/Release
10
11
 
11
12
debug:
12
 
        cd src && ninja -C out/Debug -j$(JOBS)
 
13
        cd src && $(NINJA) -C out/Debug
13
14
 
14
15
sync:
15
16
        GYP_DEFINES=werror= gclient sync -j$(JOBS)