xref: /trunk/main/accessibility/prj/makefile.mk (revision b220f406)
1*b220f406SDamjan Jovanovic#**************************************************************
2*b220f406SDamjan Jovanovic#
3*b220f406SDamjan Jovanovic#  Licensed to the Apache Software Foundation (ASF) under one
4*b220f406SDamjan Jovanovic#  or more contributor license agreements.  See the NOTICE file
5*b220f406SDamjan Jovanovic#  distributed with this work for additional information
6*b220f406SDamjan Jovanovic#  regarding copyright ownership.  The ASF licenses this file
7*b220f406SDamjan Jovanovic#  to you under the Apache License, Version 2.0 (the
8*b220f406SDamjan Jovanovic#  "License"); you may not use this file except in compliance
9*b220f406SDamjan Jovanovic#  with the License.  You may obtain a copy of the License at
10*b220f406SDamjan Jovanovic#
11*b220f406SDamjan Jovanovic#    http://www.apache.org/licenses/LICENSE-2.0
12*b220f406SDamjan Jovanovic#
13*b220f406SDamjan Jovanovic#  Unless required by applicable law or agreed to in writing,
14*b220f406SDamjan Jovanovic#  software distributed under the License is distributed on an
15*b220f406SDamjan Jovanovic#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*b220f406SDamjan Jovanovic#  KIND, either express or implied.  See the License for the
17*b220f406SDamjan Jovanovic#  specific language governing permissions and limitations
18*b220f406SDamjan Jovanovic#  under the License.
19*b220f406SDamjan Jovanovic#
20*b220f406SDamjan Jovanovic#**************************************************************
21*b220f406SDamjan Jovanovic
22*b220f406SDamjan Jovanovic
23*b220f406SDamjan Jovanovic
24*b220f406SDamjan JovanovicPRJ=..
25*b220f406SDamjan JovanovicTARGET=prj
26*b220f406SDamjan Jovanovic
27*b220f406SDamjan Jovanovic.INCLUDE : settings.mk
28*b220f406SDamjan Jovanovic
29*b220f406SDamjan Jovanovic.IF "$(VERBOSE)"!=""
30*b220f406SDamjan JovanovicVERBOSEFLAG :=
31*b220f406SDamjan Jovanovic.ELSE
32*b220f406SDamjan JovanovicVERBOSEFLAG := -s
33*b220f406SDamjan Jovanovic.ENDIF
34*b220f406SDamjan Jovanovic
35*b220f406SDamjan Jovanovic.IF "$(DEBUG)"!=""
36*b220f406SDamjan JovanovicDEBUG_ARGUMENT=DEBUG=$(DEBUG)
37*b220f406SDamjan Jovanovic.ELIF "$(debug)"!=""
38*b220f406SDamjan JovanovicDEBUG_ARGUMENT=debug=$(debug)
39*b220f406SDamjan Jovanovic.ELSE
40*b220f406SDamjan JovanovicDEBUG_ARGUMENT=
41*b220f406SDamjan Jovanovic.ENDIF
42*b220f406SDamjan Jovanovic
43*b220f406SDamjan Jovanovicall:
44*b220f406SDamjan Jovanovic	cd $(PRJ) && $(GNUMAKE) $(VERBOSEFLAG) -r -j$(MAXPROCESS) $(gb_MAKETARGET) $(DEBUG_ARGUMENT) && $(GNUMAKE) $(VERBOSEFLAG) -r deliverlog
45