-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (30 loc) · 762 Bytes
/
Makefile
File metadata and controls
43 lines (30 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# SPDX-FileCopyrightText: Copyright © 2025 The Dymes project authors
#
# SPDX-License-Identifier: Apache-2.0
.POSIX:
DYMES_DIR := ./dymes
.PHONY: all
all: $(DYMES_DIR)/Dockerfile build-dymes-image install
.PHONY: clean
clean:
mvn --batch-mode --no-transfer-progress clean
.PHONY: install
install: build-pr
.PHONY: tilted
tilted: build-qnd
.PHONY: clone-submodules
clone-submodules:
@git submodule update --force --recursive --init --remote
$(DYMES_DIR)/Dockerfile: clone-submodules
.PHONY: build-dymes-image
build-dymes-image:
@make -C dymes DYMES_IMAGE_NAME="dymes-io/dymes" images
.PHONY: build-pr
build-pr:
@scripts/build-pr.sh
.PHONY: build-qnd
build-qnd:
@scripts/build-qnd.sh
.PHONY: build-deploy
build-deploy:
@scripts/build-deploy.sh