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