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