makefile.mk (7871dc3e) makefile.mk (8601a465)
1#**************************************************************
2#
3# Licensed to the Apache Software Foundation (ASF) under one
4# or more contributor license agreements. See the NOTICE file
5# distributed with this work for additional information
6# regarding copyright ownership. The ASF licenses this file
7# to you under the Apache License, Version 2.0 (the
8# "License"); you may not use this file except in compliance

--- 18 unchanged lines hidden (view full) ---

27.INCLUDE : settings.mk
28
29.IF "$(VERBOSE)"!=""
30VERBOSEFLAG :=
31.ELSE
32VERBOSEFLAG := -s
33.ENDIF
34
1#**************************************************************
2#
3# Licensed to the Apache Software Foundation (ASF) under one
4# or more contributor license agreements. See the NOTICE file
5# distributed with this work for additional information
6# regarding copyright ownership. The ASF licenses this file
7# to you under the Apache License, Version 2.0 (the
8# "License"); you may not use this file except in compliance

--- 18 unchanged lines hidden (view full) ---

27.INCLUDE : settings.mk
28
29.IF "$(VERBOSE)"!=""
30VERBOSEFLAG :=
31.ELSE
32VERBOSEFLAG := -s
33.ENDIF
34
35.IF "$(DEBUG)"!=""
36DEBUG_ARGUMENT=DEBUG=$(DEBUG)
37.ELIF "$(debug)"!=""
38DEBUG_ARGUMENT=debug=$(debug)
39.ELSE
40DEBUG_ARGUMENT=
41.ENDIF
42
35all:
43all:
36 cd $(PRJ) && $(GNUMAKE) $(VERBOSEFLAG) -r -j$(MAXPROCESS) $(gb_MAKETARGET) && $(GNUMAKE) $(VERBOSEFLAG) -r deliverlog
44 cd $(PRJ) && $(GNUMAKE) $(VERBOSEFLAG) -r -j$(MAXPROCESS) $(gb_MAKETARGET) $(DEBUG_ARGUMENT) && $(GNUMAKE) $(VERBOSEFLAG) -r deliverlog