~epii/+junk/chromium-browser

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: epii
  • Date: 2011-12-08 15:51:20 UTC
  • Revision ID: public.epii@gmail.com-20111208155120-fuq5cz83vzfv7p7x
first commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
MAKEOPTS += CC=gcc-4.5 CXX=g++-4.5
 
3
JOBS ?= 20
 
4
 
 
5
.PHONY: all release debug sync
 
6
 
 
7
all:
 
8
 
 
9
release:
 
10
        cd src && make BUILDTYPE=Release $(MAKEOPTS) -j $(JOBS)
 
11
 
 
12
debug:
 
13
        cd src && make $(MAKEOPTS) -j $(JOBS)
 
14
 
 
15
# Do not link, compile only
 
16
debug-compile:
 
17
        cd src && make $(MAKEOPTS) LINK=true -j $(JOBS)
 
18
 
 
19
sync:
 
20
        cd src && gclient sync
 
21