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