Skip to content
Snippets Groups Projects
Select Git revision
  • d9f274bf5db1faa2649b30ac186c9d8b21cab7f1
  • main default protected
  • fix/smaller-stuff
  • traditional-rewrite
  • fix/#107-zusammengepasst
  • feat/remove-list-padding
  • chore/#26-no-radical-radical-highlighting
  • fix/#49-wrong-radical
  • docs/fix-markdown
  • docs/fix-markdown-link
  • fix/ci-typo
  • 5.2.0
  • 5.1.0
  • 5.0.0
  • 4.1.0
  • 4.0.1
  • 4.0.0
  • 3.3.6
  • 3.3.5
  • 3.3.4
  • 3.3.3
  • 3.3.2
  • 3.3.1
  • 3.3.0
  • 3.2.0
  • 3.1.1
  • 3.1.0
  • 3.0.0
  • 2.1.2
  • 2.1.1
  • 2.1.0
31 results

write.css

Blame
  • Makefile 585 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/dev.mk
    include make/gen.mk
    include make/rel.mk
    include make/test.mk