Skip to content
Snippets Groups Projects
Verified Commit 71fa1081 authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

chore: commit save point

parent 9ca92ca5
No related branches found
No related tags found
No related merge requests found
Showing
with 63 additions and 25 deletions
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
############################################################################################# #############################################################################################
############################################################################################# #############################################################################################
COMPONENTNAME := ReqMan COMPONENT_NAME := ReqMan
############################################################################################# #############################################################################################
############################################################################################# #############################################################################################
...@@ -21,21 +21,36 @@ THIS_MAKEFILE_PATH:=$(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)) ...@@ -21,21 +21,36 @@ THIS_MAKEFILE_PATH:=$(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))
PROJECT_ROOT:=$(shell cd $(dir $(THIS_MAKEFILE_PATH));pwd)/ PROJECT_ROOT:=$(shell cd $(dir $(THIS_MAKEFILE_PATH));pwd)/
THIS_MAKEFILE:=$(PROJECT_ROOT)$(THIS_MAKEFILE_PATH) THIS_MAKEFILE:=$(PROJECT_ROOT)$(THIS_MAKEFILE_PATH)
include $(PROJECT_ROOT)development/makefile/license-agpl3.mk
include $(PROJECT_ROOT)development/makefile/placeholder.mk -include $(PROJECT_ROOT)project.mk
include $(PROJECT_ROOT)development/makefile/directories-default.mk
include $(PROJECT_ROOT)development/makefile/go.mk
include $(PROJECT_ROOT)development/makefile/color.mk ## Define the location of Makefiles
include $(PROJECT_ROOT)development/makefile/terminal.mk MAKEFILE_IMPORT_PATH?=$(PROJECT_ROOT)makefiles/
include $(PROJECT_ROOT)development/makefile/output.mk
include $(PROJECT_ROOT)development/makefile/version.mk #############################################################################################
include $(PROJECT_ROOT)development/makefile/target-help.mk #############################################################################################
include $(PROJECT_ROOT)development/makefile/target-init.mk ##
include $(PROJECT_ROOT)development/makefile/target-deploy-tool.mk ## INCLUSION OF VARIOUS STANDARD RULES
include $(PROJECT_ROOT)development/makefile/target-build-go.mk ##
include $(PROJECT_ROOT)development/makefile/target-git.mk #############################################################################################
include $(PROJECT_ROOT)development/makefile/terminal-check.mk #############################################################################################
include $(MAKEFILE_IMPORT_PATH)license-agpl3.mk
include $(MAKEFILE_IMPORT_PATH)placeholder.mk
include $(MAKEFILE_IMPORT_PATH)directories-standard.mk
include $(MAKEFILE_IMPORT_PATH)go.mk
include $(MAKEFILE_IMPORT_PATH)color.mk
include $(MAKEFILE_IMPORT_PATH)terminal.mk
include $(MAKEFILE_IMPORT_PATH)output.mk
include $(MAKEFILE_IMPORT_PATH)version.mk
include $(MAKEFILE_IMPORT_PATH)target-help.mk
include $(MAKEFILE_IMPORT_PATH)target-variable.mk
include $(MAKEFILE_IMPORT_PATH)target-update-makefiles.mk
include $(MAKEFILE_IMPORT_PATH)target-deploy-tool.mk
include $(MAKEFILE_IMPORT_PATH)target-build-go.mk
include $(MAKEFILE_IMPORT_PATH)target-git.mk
include $(MAKEFILE_IMPORT_PATH)terminal-check.mk
############################################################################################# #############################################################################################
......
package main package main
import "testing" //func TestNewConfiguration(t *testing.T) {
// command, _, _ := NewConfiguration()
func TestNewConfiguration(t *testing.T) { // if command.Name == "test" {
command, _, _ := NewConfiguration() // t.Errorf("Command name was incorrect, got: %s, want: %d.", command.Name, 10)
if command.Name == "test" { // }
t.Errorf("Command name was incorrect, got: %s, want: %d.", command.Name, 10) //}
}
}
File moved
File moved
File moved
#############################################################################################
#############################################################################################
##
## INIT-TARGETS
##
#############################################################################################
#############################################################################################
## @see .PHONY https://www.gnu.org/software/make/manual/html_node/Phony-Targets.html#Phony-Targets
.PHONY: update-makefiles
## update standard makefiles
update-makefiles:
$(QUIET) $(eval TEMPD := $(shell mktemp -d))
$(QUIET) $(GIT) clone --depth=1 https://gitlab.schukai.com/schukai/utilities/makefile.git/ "$(TEMPD)" > /dev/null
$(QUIET) $(CP) -rv $(TEMPD)/makefiles/* $(MAKEFILE_IMPORT_PATH)
$(QUIET) $(RM) -rf $(TEMPD)
File moved
MAKEFILE_IMPORT_PATH?=$(PROJECT_ROOT)development/makefiles/
\ No newline at end of file
...@@ -7,4 +7,4 @@ ...@@ -7,4 +7,4 @@
<orderEntry type="inheritedJdk" /> <orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="sourceFolder" forTests="false" />
</component> </component>
</module> </module>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment