Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for MakeFile (0.32 sec)

  1. Makefile

    export BUILD_WITH_CONTAINER ?= 0
    
    ifeq ($(BUILD_WITH_CONTAINER),1)
    
    # An export free of arguments in a Makefile places all variables in the Makefile into the
    # environment. This is needed to allow overrides from Makefile.overrides.mk.
    export
    
    RUN = ./common/scripts/run.sh
    
    MAKE_DOCKER = $(RUN) make --no-print-directory -e -f Makefile.core.mk
    
    %:
    	@$(MAKE_DOCKER) $@
    
    default:
    	@$(MAKE_DOCKER)
    
    shell:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 11 18:29:15 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  2. Makefile

    build/root/Makefile...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 22:53:54 UTC 2017
    - 19 bytes
    - Viewed (0)
  3. cluster/addons/dns/coredns/Makefile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Makefile for the kubedns underscore templates to Salt/Pillar and other formats.
    
    # If you update the *.base templates, please run this Makefile before pushing.
    #
    # Usage:
    #    make
    
    all: transform
    
    # .base -> .in pattern rule
    %.in: %.base
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 29 15:52:57 UTC 2018
    - 1K bytes
    - Viewed (0)
  4. cluster/addons/dns/kube-dns/Makefile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Makefile for the kubedns underscore templates to Salt/Pillar and other formats.
    
    # If you update the *.base templates, please run this Makefile before pushing.
    #
    # Usage:
    #    make
    
    all: transform
    
    # .base -> .in pattern rule
    %.in: %.base
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 29 15:52:57 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  5. cluster/images/kubemark/Makefile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # build Kubemark image from currently built binaries containing both 'real' master and Hollow Node.
    # This makefile assumes that the kubemark binary is present in this directory.
    
    # Allow the caller to override this.  Beware make's precedence. This:
    #   REGISTRY=$VAR make
    # .. is not the same as:
    #   make REGISTRY=$VAR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 27 13:57:53 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  6. src/runtime/Makefile

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 178 bytes
    - Viewed (0)
  7. build/root/Makefile

    # limitations under the License.
    
    DBG_MAKEFILE ?=
    ifeq ($(DBG_MAKEFILE),1)
        $(warning ***** starting Makefile for goal(s) "$(MAKECMDGOALS)")
        $(warning ***** $(shell date))
    else
        # If we're not debugging the Makefile, don't echo recipes.
        MAKEFLAGS += -s
    endif
    
    
    # Old-skool build tools.
    #
    # Commonly used targets (see each target for more information):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/Makefile

    Konstantin Shaposhnikov <******@****.***> 1463192851 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 17:21:52 UTC 2016
    - 150 bytes
    - Viewed (0)
  9. build/pause/Makefile

    Benjamin Elder <******@****.***> 1716492351 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. Makefile

    all: build
    
    checks: ## check dependencies
    	@echo "Checking dependencies"
    	@(env bash $(PWD)/buildscripts/checkdeps.sh)
    
    help: ## print this help
    	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' Makefile | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-40s\033[0m %s\n", $$1, $$2}'
    
    getdeps: ## fetch necessary dependencies
    	@mkdir -p ${GOPATH}/bin
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top