-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (32 loc) · 1.29 KB
/
Copy pathMakefile
File metadata and controls
43 lines (32 loc) · 1.29 KB
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
43
# Host tools. Package builds use makepkg inside Arch (native or pinned Docker).
.PHONY: all check build repo pages help
.PHONY: build-reticulum-go-bin build-reticulum-go-git
.PHONY: build-meshchatx-bin build-meshchatx-git
all: check build repo
help:
@echo "Targets:"
@echo " check Validate PKGBUILDs, pkg.conf, and shell scripts"
@echo " build makepkg every package (Docker if not on Arch)"
@echo " build-reticulum-go-bin Binary packages for x86_64 aarch64 armv7h"
@echo " build-reticulum-go-git Git packages for host architecture"
@echo " build-meshchatx-bin AppImage packages for x86_64 aarch64"
@echo " build-meshchatx-git Git package for host architecture"
@echo " repo repo-add databases under repo/\$arch"
@echo " pages Assemble GitHub Pages tree in public/"
@echo "Variables: FORCE_DOCKER=1 PACKAGER='Quad4.io <ivan@quad4.io>'"
check:
sh scripts/check.sh
build:
sh scripts/makepkg.sh
build-reticulum-go-bin:
sh scripts/makepkg.sh reticulum-go-bin
build-reticulum-go-git:
sh scripts/makepkg.sh reticulum-go-git
build-meshchatx-bin:
sh scripts/makepkg.sh meshchatx-bin
build-meshchatx-git:
sh scripts/makepkg.sh meshchatx-git
repo:
sh scripts/repo-add.sh
pages: repo
sh scripts/assemble-pages.sh