Skip to content
Snippets Groups Projects
Select Git revision
  • v0.16.2-gitlab.15-rc1
  • main default
  • bugfix/update-govmomi-for-vsphere-8
  • faleksic-main-patch-45738
  • sh-debug-docker-restart-error
  • mb-update-download-link-2024-01-31
  • il-central-1
  • update-aws-govcloud-regions
  • ajwalker/golang-upgrade
  • main-patch-3e07
  • dbickford-add-darwin-arm64-build
  • darren-patch-docs
  • debug-ssh-connections
  • DarrenEastman-main-patch-57526
  • add-command-for-base-certificates-regeneration
  • ak/go-modules
  • linux-s390x
  • contribution-warning
  • nelbacha-master-patch-89734
  • gitlab-0-14-0-release
  • test-longer-creation-waiting-time-for-DO
  • v0.16.2-gitlab.25
  • v0.16.2-gitlab.24
  • v0.16.2-gitlab.23
  • v0.16.2-gitlab.22
  • v0.16.2-gitlab.21
  • v0.16.2-gitlab.20
  • v0.16.2-gitlab.19
  • v0.16.2-gitlab.18
  • v0.16.2-gitlab.17
  • v0.16.2-gitlab.16
  • v0.16.2-gitlab.15
  • v0.16.2-gitlab.15-rc2
  • v0.16.2-gitlab.14
  • v0.16.2-gitlab.13
  • v0.16.2-gitlab.12
  • v0.16.2-gitlab.11
  • v0.16.2-gitlab.10
  • v0.16.2-gitlab.9
  • v0.16.2-gitlab.8
40 results

Makefile.inc

Blame
  • Makefile.inc 828 B
    # Project name, used to name the binaries
    PKG_NAME := docker-machine
    
    # If true, disable optimizations and does NOT strip the binary
    DEBUG ?=
    # If true, "build" will produce a static binary (cross compile always produce static build regardless)
    STATIC ?=
    # If true, turn on verbose output for build
    VERBOSE ?=
    # Build tags
    BUILDTAGS ?=
    # Adjust number of parallel builds (XXX not used)
    PARALLEL ?= -1
    # Coverage default directory
    COVERAGE_DIR ?= cover
    # Whether to perform targets inside a docker container, or natively on the host
    USE_CONTAINER ?=
    
    # List of cross compilation targets
    ifeq ($(TARGET_OS),)
      TARGET_OS := darwin linux windows
    endif
    
    ifeq ($(TARGET_ARCH),)
      TARGET_ARCH := amd64 arm arm64 386
    endif
    
    # Output prefix, defaults to local directory if not specified
    ifeq ($(PREFIX),)
      PREFIX := $(shell pwd)
    endif