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