-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
21 lines (18 loc) · 875 Bytes
/
Copy pathMakefile
File metadata and controls
21 lines (18 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Makefile for Devalltect Docs
ROOT_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
.DEFAULT_GOAL := help
include $(ROOT_DIR)/make/core/variables/variable.mk
include $(ROOT_DIR)/make/core/helpers/common.mk
include $(ROOT_DIR)/make/core/setup_install/command.mk
include $(ROOT_DIR)/make/core/local/command.mk
include $(ROOT_DIR)/make/core/testing/command.mk
include $(ROOT_DIR)/make/core/lint_format/command.mk
include $(ROOT_DIR)/make/core/documentation/command.mk
include $(ROOT_DIR)/make/core/qa/command.mk
include $(ROOT_DIR)/make/core/ci/command.mk
include $(ROOT_DIR)/make/core/docker/command/common.mk
include $(ROOT_DIR)/make/core/docker/command/core.mk
include $(ROOT_DIR)/make/core/compose/command/common.mk
include $(ROOT_DIR)/make/core/compose/command/core.mk
include $(ROOT_DIR)/make/core/cleanup/command.mk
include $(ROOT_DIR)/make/core/help/command.mk