2017-10-31 17:38:29 +00:00
|
|
|
SHELL = bash
|
2017-08-18 05:29:26 +00:00
|
|
|
PROJECT_ROOT := $(patsubst %/,%,$(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
|
|
|
|
THIS_OS := $(shell uname)
|
|
|
|
|
|
|
|
GIT_COMMIT := $(shell git rev-parse HEAD)
|
|
|
|
GIT_DIRTY := $(if $(shell git status --porcelain),+CHANGES)
|
|
|
|
|
2017-11-03 23:01:01 +00:00
|
|
|
GO_LDFLAGS := "-X github.com/hashicorp/nomad/version.GitCommit=$(GIT_COMMIT)$(GIT_DIRTY)"
|
2017-08-18 05:29:26 +00:00
|
|
|
GO_TAGS =
|
|
|
|
|
2018-12-15 19:00:27 +00:00
|
|
|
GO_TEST_CMD = $(if $(shell which gotestsum),gotestsum --,go test)
|
|
|
|
|
2019-01-23 20:39:34 +00:00
|
|
|
ifeq ($(origin GOTEST_PKGS_EXCLUDE), undefined)
|
|
|
|
GOTEST_PKGS ?= "./..."
|
|
|
|
else
|
|
|
|
GOTEST_PKGS=$(shell go list ./... | sed 's/github.com\/hashicorp\/nomad/./' | egrep -v "^($(GOTEST_PKGS_EXCLUDE))$$")
|
|
|
|
endif
|
|
|
|
|
2017-08-18 05:29:26 +00:00
|
|
|
default: help
|
|
|
|
|
2019-01-08 17:13:50 +00:00
|
|
|
ifeq (,$(findstring $(THIS_OS),Darwin Linux FreeBSD Windows))
|
2017-08-18 05:29:26 +00:00
|
|
|
$(error Building Nomad is currently only supported on Darwin and Linux.)
|
|
|
|
endif
|
|
|
|
|
2019-01-08 01:39:29 +00:00
|
|
|
# On Linux we build for Linux and Windows
|
2017-08-18 05:29:26 +00:00
|
|
|
ifeq (Linux,$(THIS_OS))
|
2017-08-22 00:09:17 +00:00
|
|
|
|
2018-02-21 00:38:18 +00:00
|
|
|
ifeq ($(TRAVIS),true)
|
|
|
|
$(info Running in Travis, verbose mode is disabled)
|
|
|
|
else
|
2017-12-06 19:30:31 +00:00
|
|
|
VERBOSE="true"
|
2018-02-21 00:38:18 +00:00
|
|
|
endif
|
2017-12-06 19:30:31 +00:00
|
|
|
|
|
|
|
|
2017-08-18 05:29:26 +00:00
|
|
|
ALL_TARGETS += linux_386 \
|
|
|
|
linux_amd64 \
|
|
|
|
linux_arm \
|
|
|
|
linux_arm64 \
|
|
|
|
windows_386 \
|
|
|
|
windows_amd64
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2017-09-06 22:46:31 +00:00
|
|
|
# On MacOS, we only build for MacOS
|
2017-08-18 05:29:26 +00:00
|
|
|
ifeq (Darwin,$(THIS_OS))
|
|
|
|
ALL_TARGETS += darwin_amd64
|
|
|
|
endif
|
|
|
|
|
2017-09-06 22:46:31 +00:00
|
|
|
# On FreeBSD, we only build for FreeBSD
|
|
|
|
ifeq (FreeBSD,$(THIS_OS))
|
|
|
|
ALL_TARGETS += freebsd_amd64
|
|
|
|
endif
|
|
|
|
|
2017-08-18 05:29:26 +00:00
|
|
|
pkg/darwin_amd64/nomad: $(SOURCE_FILES) ## Build Nomad for darwin/amd64
|
2017-09-19 14:47:10 +00:00
|
|
|
@echo "==> Building $@ with tags $(GO_TAGS)..."
|
2017-08-18 05:29:26 +00:00
|
|
|
@CGO_ENABLED=1 GOOS=darwin GOARCH=amd64 \
|
|
|
|
go build \
|
|
|
|
-ldflags $(GO_LDFLAGS) \
|
|
|
|
-tags "$(GO_TAGS)" \
|
|
|
|
-o "$@"
|
|
|
|
|
2017-09-06 22:46:31 +00:00
|
|
|
pkg/freebsd_amd64/nomad: $(SOURCE_FILES) ## Build Nomad for freebsd/amd64
|
|
|
|
@echo "==> Building $@..."
|
|
|
|
@CGO_ENABLED=1 GOOS=freebsd GOARCH=amd64 \
|
|
|
|
go build \
|
|
|
|
-ldflags $(GO_LDFLAGS) \
|
|
|
|
-tags "$(GO_TAGS)" \
|
|
|
|
-o "$@"
|
|
|
|
|
2017-08-18 05:29:26 +00:00
|
|
|
pkg/linux_386/nomad: $(SOURCE_FILES) ## Build Nomad for linux/386
|
2017-09-19 14:47:10 +00:00
|
|
|
@echo "==> Building $@ with tags $(GO_TAGS)..."
|
2017-08-18 05:29:26 +00:00
|
|
|
@CGO_ENABLED=1 GOOS=linux GOARCH=386 \
|
|
|
|
go build \
|
|
|
|
-ldflags $(GO_LDFLAGS) \
|
|
|
|
-tags "$(GO_TAGS)" \
|
|
|
|
-o "$@"
|
|
|
|
|
|
|
|
pkg/linux_amd64/nomad: $(SOURCE_FILES) ## Build Nomad for linux/amd64
|
2017-09-19 14:47:10 +00:00
|
|
|
@echo "==> Building $@ with tags $(GO_TAGS)..."
|
2017-08-18 05:29:26 +00:00
|
|
|
@CGO_ENABLED=1 GOOS=linux GOARCH=amd64 \
|
|
|
|
go build \
|
|
|
|
-ldflags $(GO_LDFLAGS) \
|
|
|
|
-tags "$(GO_TAGS)" \
|
|
|
|
-o "$@"
|
|
|
|
|
|
|
|
pkg/linux_arm/nomad: $(SOURCE_FILES) ## Build Nomad for linux/arm
|
2017-09-19 14:47:10 +00:00
|
|
|
@echo "==> Building $@ with tags $(GO_TAGS)..."
|
2017-08-18 05:29:26 +00:00
|
|
|
@CGO_ENABLED=1 GOOS=linux GOARCH=arm CC=arm-linux-gnueabihf-gcc-5 \
|
|
|
|
go build \
|
|
|
|
-ldflags $(GO_LDFLAGS) \
|
|
|
|
-tags "$(GO_TAGS)" \
|
|
|
|
-o "$@"
|
|
|
|
|
|
|
|
pkg/linux_arm64/nomad: $(SOURCE_FILES) ## Build Nomad for linux/arm64
|
2017-09-19 14:47:10 +00:00
|
|
|
@echo "==> Building $@ with tags $(GO_TAGS)..."
|
2017-08-18 05:29:26 +00:00
|
|
|
@CGO_ENABLED=1 GOOS=linux GOARCH=arm64 CC=aarch64-linux-gnu-gcc-5 \
|
|
|
|
go build \
|
|
|
|
-ldflags $(GO_LDFLAGS) \
|
|
|
|
-tags "$(GO_TAGS)" \
|
|
|
|
-o "$@"
|
|
|
|
|
|
|
|
# If CGO support for Windows is ever required, set the following variables
|
|
|
|
# in the environment for `go build` for both the windows/amd64 and the
|
|
|
|
# windows/386 targets:
|
|
|
|
# CC=i686-w64-mingw32-gcc
|
|
|
|
# CXX=i686-w64-mingw32-g++
|
|
|
|
pkg/windows_386/nomad: $(SOURCE_FILES) ## Build Nomad for windows/386
|
2017-09-19 14:47:10 +00:00
|
|
|
@echo "==> Building $@ with tags $(GO_TAGS)..."
|
2017-08-18 05:29:26 +00:00
|
|
|
@CGO_ENABLED=1 GOOS=windows GOARCH=386 \
|
|
|
|
go build \
|
|
|
|
-ldflags $(GO_LDFLAGS) \
|
|
|
|
-tags "$(GO_TAGS)" \
|
2017-08-29 19:15:55 +00:00
|
|
|
-o "$@.exe"
|
2017-08-18 05:29:26 +00:00
|
|
|
|
|
|
|
pkg/windows_amd64/nomad: $(SOURCE_FILES) ## Build Nomad for windows/amd64
|
2017-09-19 14:47:10 +00:00
|
|
|
@echo "==> Building $@ with tags $(GO_TAGS)..."
|
2017-09-06 00:23:21 +00:00
|
|
|
@CGO_ENABLED=1 GOOS=windows GOARCH=amd64 \
|
2017-08-18 05:29:26 +00:00
|
|
|
go build \
|
|
|
|
-ldflags $(GO_LDFLAGS) \
|
|
|
|
-tags "$(GO_TAGS)" \
|
2017-08-29 19:15:55 +00:00
|
|
|
-o "$@.exe"
|
2017-08-18 05:29:26 +00:00
|
|
|
|
|
|
|
# Define package targets for each of the build targets we actually have on this system
|
|
|
|
define makePackageTarget
|
|
|
|
|
|
|
|
pkg/$(1).zip: pkg/$(1)/nomad
|
|
|
|
@echo "==> Packaging for $(1)..."
|
2017-08-29 05:29:49 +00:00
|
|
|
@zip -j pkg/$(1).zip pkg/$(1)/*
|
2017-08-18 05:29:26 +00:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
# Reify the package targets
|
|
|
|
$(foreach t,$(ALL_TARGETS),$(eval $(call makePackageTarget,$(t))))
|
|
|
|
|
|
|
|
.PHONY: bootstrap
|
2017-10-24 17:49:53 +00:00
|
|
|
bootstrap: deps lint-deps # Install all dependencies
|
2017-08-18 05:29:26 +00:00
|
|
|
|
|
|
|
.PHONY: deps
|
2017-10-24 17:49:53 +00:00
|
|
|
deps: ## Install build and development dependencies
|
2017-08-18 05:29:26 +00:00
|
|
|
@echo "==> Updating build dependencies..."
|
|
|
|
go get -u github.com/kardianos/govendor
|
2018-12-14 14:38:49 +00:00
|
|
|
go get -u github.com/hashicorp/go-bindata/go-bindata
|
|
|
|
go get -u github.com/elazarl/go-bindata-assetfs/go-bindata-assetfs
|
2017-08-18 05:29:26 +00:00
|
|
|
go get -u github.com/a8m/tree/cmd/tree
|
2017-12-12 16:30:36 +00:00
|
|
|
go get -u github.com/magiconair/vendorfmt/cmd/vendorfmt
|
2018-12-15 19:00:27 +00:00
|
|
|
go get -u gotest.tools/gotestsum
|
2019-01-30 16:00:17 +00:00
|
|
|
@bash -C "$(PROJECT_ROOT)/scripts/install-codecgen.sh"
|
|
|
|
@bash -C "$(PROJECT_ROOT)/scripts/install-protoc-gen-go.sh"
|
2017-08-18 05:29:26 +00:00
|
|
|
|
2017-10-24 17:49:53 +00:00
|
|
|
.PHONY: lint-deps
|
|
|
|
lint-deps: ## Install linter dependencies
|
|
|
|
@echo "==> Updating linter dependencies..."
|
|
|
|
go get -u github.com/alecthomas/gometalinter
|
|
|
|
gometalinter --install
|
|
|
|
|
2017-08-18 05:29:26 +00:00
|
|
|
.PHONY: check
|
|
|
|
check: ## Lint the source code
|
|
|
|
@echo "==> Linting source code..."
|
|
|
|
@gometalinter \
|
|
|
|
--deadline 10m \
|
|
|
|
--vendor \
|
2017-09-26 22:26:33 +00:00
|
|
|
--exclude='.*\.generated\.go' \
|
|
|
|
--exclude='.*bindata_assetfs\.go' \
|
2017-09-19 16:49:34 +00:00
|
|
|
--skip="ui/" \
|
2017-09-26 22:26:33 +00:00
|
|
|
--sort="path" \
|
|
|
|
--aggregate \
|
|
|
|
--enable-gc \
|
2017-08-18 05:29:26 +00:00
|
|
|
--disable-all \
|
2017-09-26 22:26:33 +00:00
|
|
|
--enable goimports \
|
|
|
|
--enable misspell \
|
|
|
|
--enable vet \
|
|
|
|
--enable deadcode \
|
|
|
|
--enable varcheck \
|
|
|
|
--enable ineffassign \
|
|
|
|
--enable structcheck \
|
|
|
|
--enable unconvert \
|
|
|
|
--enable gofmt \
|
2017-08-18 05:29:26 +00:00
|
|
|
./...
|
2017-09-27 18:14:37 +00:00
|
|
|
@echo "==> Spell checking website..."
|
|
|
|
@misspell -error -source=text website/source/
|
2017-08-18 05:29:26 +00:00
|
|
|
|
2019-03-14 14:56:27 +00:00
|
|
|
@echo "==> Check proto files are in-sync..."
|
|
|
|
@$(MAKE) proto
|
|
|
|
@if (git status | grep -q .pb.go); then echo the following proto files are out of sync; git status |grep .pb.go; exit 1; fi
|
|
|
|
|
2017-09-09 00:42:42 +00:00
|
|
|
.PHONY: checkscripts
|
|
|
|
checkscripts: ## Lint shell scripts
|
|
|
|
@echo "==> Linting scripts..."
|
|
|
|
@shellcheck ./scripts/*
|
|
|
|
|
2018-11-07 19:51:03 +00:00
|
|
|
.PHONY: generate-all
|
|
|
|
generate-all: generate-structs proto
|
|
|
|
|
|
|
|
.PHONY: generate-structs
|
|
|
|
generate-structs: LOCAL_PACKAGES = $(shell go list ./... | grep -v '/vendor/')
|
|
|
|
generate-structs: ## Update generated code
|
2019-01-30 16:00:17 +00:00
|
|
|
@echo "--> Running go generate..."
|
2017-08-18 05:29:26 +00:00
|
|
|
@go generate $(LOCAL_PACKAGES)
|
|
|
|
|
2018-09-28 17:09:01 +00:00
|
|
|
.PHONY: proto
|
|
|
|
proto:
|
2019-01-30 16:00:17 +00:00
|
|
|
@echo "--> Generating proto bindings..."
|
2018-09-28 17:09:01 +00:00
|
|
|
@for file in $$(git ls-files "*.proto" | grep -v "vendor\/.*.proto"); do \
|
|
|
|
protoc -I . -I ../../.. --go_out=plugins=grpc:. $$file; \
|
|
|
|
done
|
|
|
|
|
|
|
|
|
2017-12-12 16:30:36 +00:00
|
|
|
vendorfmt:
|
|
|
|
@echo "--> Formatting vendor/vendor.json"
|
|
|
|
test -x $(GOPATH)/bin/vendorfmt || go get -u github.com/magiconair/vendorfmt/cmd/vendorfmt
|
|
|
|
vendorfmt
|
2017-12-12 21:52:58 +00:00
|
|
|
changelogfmt:
|
|
|
|
@echo "--> Making [GH-xxxx] references clickable..."
|
|
|
|
@sed -E 's|([^\[])\[GH-([0-9]+)\]|\1[[GH-\2](https://github.com/hashicorp/nomad/issues/\2)]|g' CHANGELOG.md > changelog.tmp && mv changelog.tmp CHANGELOG.md
|
|
|
|
|
2017-12-12 16:30:36 +00:00
|
|
|
|
2017-08-18 05:29:26 +00:00
|
|
|
.PHONY: dev
|
|
|
|
dev: GOOS=$(shell go env GOOS)
|
|
|
|
dev: GOARCH=$(shell go env GOARCH)
|
|
|
|
dev: GOPATH=$(shell go env GOPATH)
|
2019-01-08 01:39:29 +00:00
|
|
|
dev: DEV_TARGET=pkg/$(GOOS)_$(GOARCH)/nomad
|
2018-01-03 22:38:41 +00:00
|
|
|
dev: vendorfmt changelogfmt ## Build for the current development platform
|
2017-08-18 05:29:26 +00:00
|
|
|
@echo "==> Removing old development build..."
|
|
|
|
@rm -f $(PROJECT_ROOT)/$(DEV_TARGET)
|
|
|
|
@rm -f $(PROJECT_ROOT)/bin/nomad
|
|
|
|
@rm -f $(GOPATH)/bin/nomad
|
|
|
|
@$(MAKE) --no-print-directory \
|
|
|
|
$(DEV_TARGET) \
|
2018-03-27 22:51:54 +00:00
|
|
|
GO_TAGS="$(NOMAD_UI_TAG)"
|
2017-08-18 05:29:26 +00:00
|
|
|
@mkdir -p $(PROJECT_ROOT)/bin
|
|
|
|
@mkdir -p $(GOPATH)/bin
|
|
|
|
@cp $(PROJECT_ROOT)/$(DEV_TARGET) $(PROJECT_ROOT)/bin/
|
|
|
|
@cp $(PROJECT_ROOT)/$(DEV_TARGET) $(GOPATH)/bin
|
|
|
|
|
2017-10-26 17:08:19 +00:00
|
|
|
.PHONY: prerelease
|
2018-03-27 22:51:54 +00:00
|
|
|
prerelease: GO_TAGS=ui release
|
2018-11-07 19:51:03 +00:00
|
|
|
prerelease: check generate-all ember-dist static-assets ## Generate all the static assets for a Nomad release
|
2017-10-26 17:08:19 +00:00
|
|
|
|
2017-08-18 05:29:26 +00:00
|
|
|
.PHONY: release
|
2018-03-27 22:51:54 +00:00
|
|
|
release: GO_TAGS=ui release
|
2017-10-26 17:08:19 +00:00
|
|
|
release: clean $(foreach t,$(ALL_TARGETS),pkg/$(t).zip) ## Build all release packages which can be built on this platform.
|
2017-08-18 05:29:26 +00:00
|
|
|
@echo "==> Results:"
|
|
|
|
@tree --dirsfirst $(PROJECT_ROOT)/pkg
|
|
|
|
|
|
|
|
.PHONY: test
|
2017-09-19 14:47:10 +00:00
|
|
|
test: ## Run the Nomad test suite and/or the Nomad UI test suite
|
|
|
|
@if [ ! $(SKIP_NOMAD_TESTS) ]; then \
|
|
|
|
make test-nomad; \
|
|
|
|
fi
|
2018-10-08 18:44:23 +00:00
|
|
|
@if [ $(RUN_WEBSITE_TESTS) ]; then \
|
|
|
|
make test-website; \
|
|
|
|
fi
|
2017-09-19 14:47:10 +00:00
|
|
|
@if [ $(RUN_UI_TESTS) ]; then \
|
|
|
|
make test-ui; \
|
|
|
|
fi
|
2018-09-19 17:21:57 +00:00
|
|
|
@if [ $(RUN_E2E_TESTS) ]; then \
|
|
|
|
make e2e-test; \
|
|
|
|
fi
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
.PHONY: test-nomad
|
2017-10-24 16:35:51 +00:00
|
|
|
test-nomad: dev ## Run Nomad test suites
|
2017-08-18 05:29:26 +00:00
|
|
|
@echo "==> Running Nomad test suites:"
|
2018-12-15 19:00:27 +00:00
|
|
|
$(if $(ENABLE_RACE),GORACE="strip_path_prefix=$(GOPATH)/src") $(GO_TEST_CMD) \
|
2018-08-27 21:15:56 +00:00
|
|
|
$(if $(ENABLE_RACE),-race) $(if $(VERBOSE),-v) \
|
|
|
|
-cover \
|
2018-12-08 19:50:47 +00:00
|
|
|
-timeout=15m \
|
2019-01-23 20:39:34 +00:00
|
|
|
$(GOTEST_PKGS) $(if $(VERBOSE), >test.log ; echo $$? > exit-code)
|
2017-12-06 19:30:31 +00:00
|
|
|
@if [ $(VERBOSE) ] ; then \
|
|
|
|
bash -C "$(PROJECT_ROOT)/scripts/test_check.sh" ; \
|
|
|
|
fi
|
2017-08-18 05:29:26 +00:00
|
|
|
|
2018-09-19 01:46:33 +00:00
|
|
|
.PHONY: e2e-test
|
2018-09-19 17:38:20 +00:00
|
|
|
e2e-test: dev ## Run the Nomad e2e test suite
|
2018-09-19 01:46:33 +00:00
|
|
|
@echo "==> Running Nomad E2E test suites:"
|
|
|
|
go test \
|
|
|
|
$(if $(ENABLE_RACE),-race) $(if $(VERBOSE),-v) \
|
|
|
|
-cover \
|
|
|
|
-timeout=900s \
|
2018-11-29 14:37:26 +00:00
|
|
|
github.com/hashicorp/nomad/e2e/vault/ \
|
2018-09-25 18:29:09 +00:00
|
|
|
-integration
|
2018-09-19 01:46:33 +00:00
|
|
|
|
2017-08-18 05:29:26 +00:00
|
|
|
.PHONY: clean
|
|
|
|
clean: GOPATH=$(shell go env GOPATH)
|
|
|
|
clean: ## Remove build artifacts
|
|
|
|
@echo "==> Cleaning build artifacts..."
|
|
|
|
@rm -rf "$(PROJECT_ROOT)/bin/"
|
|
|
|
@rm -rf "$(PROJECT_ROOT)/pkg/"
|
|
|
|
@rm -f "$(GOPATH)/bin/nomad"
|
|
|
|
|
|
|
|
.PHONY: travis
|
|
|
|
travis: ## Run Nomad test suites with output to prevent timeouts under Travis CI
|
2018-04-26 17:19:38 +00:00
|
|
|
@if [ ! $(SKIP_NOMAD_TESTS) ]; then \
|
2018-11-07 19:51:03 +00:00
|
|
|
make generate-structs; \
|
2018-04-26 17:19:38 +00:00
|
|
|
fi
|
2019-01-23 12:40:56 +00:00
|
|
|
@"$(PROJECT_ROOT)/scripts/travis.sh"
|
2017-08-18 05:29:26 +00:00
|
|
|
|
2017-09-07 18:49:22 +00:00
|
|
|
.PHONY: testcluster
|
|
|
|
testcluster: ## Bring up a Linux test cluster using Vagrant. Set PROVIDER if necessary.
|
|
|
|
vagrant up nomad-server01 \
|
|
|
|
nomad-server02 \
|
|
|
|
nomad-server03 \
|
|
|
|
nomad-client01 \
|
|
|
|
nomad-client02 \
|
|
|
|
nomad-client03 \
|
|
|
|
$(if $(PROVIDER),--provider $(PROVIDER))
|
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
.PHONY: static-assets
|
|
|
|
static-assets: ## Compile the static routes to serve alongside the API
|
|
|
|
@echo "--> Generating static assets"
|
2018-03-19 22:49:25 +00:00
|
|
|
@go-bindata-assetfs -pkg agent -prefix ui -modtime 1480000000 -tags ui -o bindata_assetfs.go ./ui/dist/...
|
2017-09-19 14:47:10 +00:00
|
|
|
@mv bindata_assetfs.go command/agent
|
|
|
|
|
2018-11-20 02:50:42 +00:00
|
|
|
.PHONY: test-website
|
2018-10-08 18:44:23 +00:00
|
|
|
test-website: ## Run Website Link Checks
|
|
|
|
@cd website && make test
|
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
.PHONY: test-ui
|
2017-11-13 19:57:17 +00:00
|
|
|
test-ui: ## Run Nomad UI test suite
|
2017-09-19 14:47:10 +00:00
|
|
|
@echo "--> Installing JavaScript assets"
|
2017-12-14 01:04:15 +00:00
|
|
|
@cd ui && npm rebuild node-sass
|
2017-09-19 14:47:10 +00:00
|
|
|
@cd ui && yarn install
|
|
|
|
@echo "--> Running ember tests"
|
|
|
|
@cd ui && npm test
|
|
|
|
|
|
|
|
.PHONY: ember-dist
|
|
|
|
ember-dist: ## Build the static UI assets from source
|
|
|
|
@echo "--> Installing JavaScript assets"
|
2018-03-20 18:30:09 +00:00
|
|
|
@cd ui && yarn install --silent
|
2017-09-19 14:47:10 +00:00
|
|
|
@cd ui && npm rebuild node-sass
|
|
|
|
@echo "--> Building Ember application"
|
|
|
|
@cd ui && npm run build
|
|
|
|
|
|
|
|
.PHONY: dev-ui
|
|
|
|
dev-ui: ember-dist static-assets
|
|
|
|
@$(MAKE) NOMAD_UI_TAG="ui" dev ## Build a dev binary with the UI baked in
|
|
|
|
|
2017-08-18 05:29:26 +00:00
|
|
|
HELP_FORMAT=" \033[36m%-25s\033[0m %s\n"
|
|
|
|
.PHONY: help
|
|
|
|
help: ## Display this usage information
|
|
|
|
@echo "Valid targets:"
|
|
|
|
@grep -E '^[^ ]+:.*?## .*$$' $(MAKEFILE_LIST) | \
|
|
|
|
sort | \
|
|
|
|
awk 'BEGIN {FS = ":.*?## "}; \
|
|
|
|
{printf $(HELP_FORMAT), $$1, $$2}'
|
2017-11-13 19:57:17 +00:00
|
|
|
@echo ""
|
|
|
|
@echo "This host will build the following targets if 'make release' is invoked:"
|
2017-08-18 05:29:26 +00:00
|
|
|
@echo $(ALL_TARGETS) | sed 's/^/ /'
|