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