Skip to content
Snippets Groups Projects
Select Git revision
  • 6e2ea8553205332f89b4772b83da0a2b7dacb360
  • master default protected
  • devel
  • hruska-feature-clients-api
  • malostik-#5066-deduplicate-idea-ids
  • warden-postgresql-port
  • hruska-feature-#6799-filter-keys
  • hruska-feature-5066-duplicateIdeaID
  • warden-client-3.0-beta3
  • warden-server-3.0-beta3
  • warden-client-2.2-final
  • warden-server-2.2-final
  • warden-client-3.0-beta2
  • warden-server-3.0-beta2
  • warden-client-2.2
  • warden-server-2.2-patch3
  • warden-client-3.0-beta1
  • warden-server-3.0-beta1
  • warden-server-2.2-patch1
  • warden-client-3.0-beta0
  • warden-server-3.0-beta0
  • warden-server-2.2
  • warden-server-2.1-patch1
  • warden-client-2.1
  • warden-server-2.1
  • warden-server-2.1-beta6
  • warden-server-2.1-beta5
  • warden-server-2.1-beta4
28 results

warden-server.pl

  • Makefile 6.34 KiB
    #-------------------------------------------------------------------------------
    # MASTER MAKEFILE FOR TYPEDCOLS PACKAGE
    #
    # This file is part of typedcols package (https://pypi.python.org/pypi/typedcols).
    #
    # Copyright (c) since 2016, CESNET, z. s. p. o.
    # Author: Pavel Kácha <pavel.kacha@cesnet.cz>
    # Use of this source is governed by an ISC license, see LICENSE file.
    #-------------------------------------------------------------------------------
    
    
    SPHINXOPTS      =
    SPHINXBUILD     = sphinx-build
    SPHINXPROJ      = typedcols
    SPHINXSOURCEDIR = .
    SPHINXBUILDDIR  = doc/_build
    
    #
    # Color code definitions for colored terminal output
    # https://stackoverflow.com/questions/5947742/how-to-change-the-output-color-of-echo-in-linux
    #
    RED    = \033[0;31m
    GREEN  = \033[0;32m
    ORANGE = \033[0;33m
    BLUE   = \033[0;34m
    PURPLE = \033[0;35m
    CYAN   = \033[0;36m
    NC     = \033[0m
    
    
    #-------------------------------------------------------------------------------
    
    
    #
    # Default make target, alias for 'help', you must explicitly choose the target.
    #
    default: help
    
    #
    # Perform all reasonable tasks to do full build.
    #
    full: docs archive bdist deploy
    
    #
    # Perform local build.
    #
    build: archive bdist
    
    #
    # Perfom build from automated system.
    #
    buildbot: bdist
    
    #
    # Check the project code.
    #
    check: pyflakes pylint test
    
    
    #-------------------------------------------------------------------------------
    
    
    help:
    	@echo ""
    	@echo " ${GREEN}─────────────────────────────────────────────────${NC}"
    	@echo " ${GREEN}              LIST OF MAKE TARGETS${NC}"
    	@echo " ${GREEN}─────────────────────────────────────────────────${NC}"
    	@echo ""
    	@echo "  * ${GREEN}default${NC}: alias for help, you have to pick a target"
    	@echo "  * ${GREEN}help${NC}: print this help and exit"