Skip to content
Snippets Groups Projects
Select Git revision
  • 7631413f5b9b069164dd05966fc930d418b7ebd9
  • master default protected
  • v1.23.2
  • v1.23.1
  • v1.23.0
  • v1.22.0
  • v1.21.1
  • v1.21.0
  • v1.20.3
  • v1.20.2
  • v1.20.1
  • v1.20.0
  • v1.19.4
  • v1.19.3
  • v1.19.2
  • v1.19.1
  • v1.19.0
  • v1.18.2
  • v1.18.1
  • v1.18.0
  • v1.17.0
  • v1.16.1
22 results

persistence_test.go

Blame
  • target-reqman.mk 1.49 KiB
    #############################################################################################
    #############################################################################################
    ##
    ## REQMAN-TARGETS
    ##
    #############################################################################################
    #############################################################################################
    
    
    # @TODO not working, check if this is a bug in this definition!!!
    
    ifeq ($(REQMAN_BIN),) 
      $(error "$(REQMAN_BIN) is not installed. Please check your makefile and include the reqman.mk")
    endif
    
    $(REQMAN_BIN):
    	$(QUIET) $(MKDIR) -p $(VENDOR_PATH)
    	$(QUIET) $(WGET) -O $(REQMAN_BIN) http://download.schukai.com/tools/reqman/reqman-$(shell uname -s | tr [:upper:] [:lower:])-$(shell echo `uname -m | sed s/aarch64/arm64/ | sed s/x86_64/amd64/`)
    	$(QUIET) $(CHMOD) u+x $(REQMAN_BIN)
    
    $(PROJECT_ROOT)deployment/build/manual.html: $(DOCMAN_BIN)
    	$(REQMAN_BIN) print html --config $(PROJECT_ROOT)requirement/config.yaml
    
    $(PROJECT_ROOT)deployment/build/manual.pdf: $(DOCMAN_BIN)
    	$(REQMAN_BIN) print pdf --config $(PROJECT_ROOT)requirement/config.yaml
    
    .PHONY: build-req-pdf
    ## creating the requirement in pdf format
    build-req-pdf: $(PROJECT_ROOT)deployment/build/requirement.pdf
    
    .PHONY: build-req-html
    ## creating the requirement in html format
    build-req-html: $(PROJECT_ROOT)deployment/build/requirement.html
    
    
    .PHONY: build-req
    ## creating the requirement in pdf and html format
    build-req: build-req-pdf build-req-html