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