fix makefile names

This commit is contained in:
Willy Kloucek
2022-05-03 11:48:20 +02:00
parent b6f03f9a6c
commit ba2fbee07d
17 changed files with 53 additions and 16 deletions

View File

@@ -0,0 +1,37 @@
SHELL := bash
NAME := app-registry
include ../../.make/recursion.mk
############ tooling ############
ifneq (, $(shell which go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
include ../../.bingo/Variables.mk
endif
############ go tooling ############
include ../../.make/go.mk
############ release ############
include ../../.make/release.mk
############ docs generate ############
include ../../.make/docs.mk
.PHONY: docs-generate
docs-generate: config-docs-generate
############ generate ############
include ../../.make/generate.mk
.PHONY: ci-go-generate
ci-go-generate: # CI runs ci-node-generate automatically before this target
.PHONY: ci-node-generate
ci-node-generate:
############ licenses ############
.PHONY: ci-node-check-licenses
ci-node-check-licenses:
.PHONY: ci-node-save-licenses
ci-node-save-licenses:

View File

@@ -1,5 +1,5 @@
SHELL := bash
NAME := ocs
NAME := app-provider
include ../../.make/recursion.mk

View File

@@ -1,5 +1,5 @@
SHELL := bash
NAME := ocs
NAME := auth-basic
include ../../.make/recursion.mk

View File

@@ -1,5 +1,5 @@
SHELL := bash
NAME := ocs
NAME := auth-bearer
include ../../.make/recursion.mk

View File

@@ -1,5 +1,5 @@
SHELL := bash
NAME := ocs
NAME := auth-machine
include ../../.make/recursion.mk

View File

@@ -1,5 +1,5 @@
SHELL := bash
NAME := ocs
NAME := frontend
include ../../.make/recursion.mk

View File

@@ -1,5 +1,5 @@
SHELL := bash
NAME := ocs
NAME := gateway
include ../../.make/recursion.mk

View File

@@ -1,5 +1,5 @@
SHELL := bash
NAME := ocs
NAME := group
include ../../.make/recursion.mk

View File

@@ -1,5 +1,5 @@
SHELL := bash
NAME := ocs
NAME := nats
include ../../.make/recursion.mk

View File

@@ -1,5 +1,5 @@
SHELL := bash
NAME := ocs
NAME := notifications
include ../../.make/recursion.mk

View File

@@ -1,5 +1,5 @@
SHELL := bash
NAME := ocs
NAME := ocdav
include ../../.make/recursion.mk

View File

@@ -1,5 +1,5 @@
SHELL := bash
NAME := ocs
NAME := sharing
include ../../.make/recursion.mk

View File

@@ -1,5 +1,5 @@
SHELL := bash
NAME := ocs
NAME := storage-metadata
include ../../.make/recursion.mk

View File

@@ -1,5 +1,5 @@
SHELL := bash
NAME := ocs
NAME := storage-publiclink
include ../../.make/recursion.mk

View File

@@ -1,5 +1,5 @@
SHELL := bash
NAME := ocs
NAME := storage-shares
include ../../.make/recursion.mk

View File

@@ -1,5 +1,5 @@
SHELL := bash
NAME := ocs
NAME := storage-users
include ../../.make/recursion.mk

View File

@@ -1,5 +1,5 @@
SHELL := bash
NAME := ocs
NAME := user
include ../../.make/recursion.mk