Skip to content
Snippets Groups Projects
Select Git revision
  • fd6b3ada0ba357c0bbd702873b256fe6015e8799
  • master default protected
  • djmdev
  • dev
  • cloud_water_contents
  • 1-download-era5
  • sysinstall
  • origin/task/language-editing
  • task/language-editing
  • feature/makefiles
  • v7.1.2
  • v7.1.1
  • v7.1
  • v7.0.4.1
  • 7.0.4
15 results

downloads.doctree

Blame
  • Makefile 605 B
    .PHONY: all
    
    APP_VERSION ?= 1.4.6
    CHART_VERSION ?= 1.4.6
    REPOSITORY_URL ?= registry.datalab.tuwien.ac.at/dbrepo
    
    .PHONY: all
    all: help
    
    .PHONY: help
    help: ## Display this help.
    	@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n  make \033[36m<target>\033[0m\n"} /^[a-zA-Z_0-9-]+:.*?##/ { printf "  \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
    
    .PHONY: version
    version: ## Get current version.
    	@echo $(APP_VERSION)
    
    include make/build.mk
    include make/dep.mk
    include make/dev.mk
    include make/gen.mk
    include make/rel.mk
    include make/test.mk