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