-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
38 lines (33 loc) · 1.21 KB
/
Makefile
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
#==============================================================#
# File : Makefile
# Desc : pgsty/pkg repo shortcuts
# Ctime : 2024-07-28
# Mtime : 2024-07-28
# Path : Makefile
# Author : Ruohang Feng (rh@vonng.com)
# License : AGPLv3
#==============================================================#
DEVEL_PATH = sv:/data/pgsty/infra-pkg
###############################################################
# 1. Building #
###############################################################
all: amd64 arm64
amd64:
cd amd64 && make
arm64:
cd arm64 && make
###############################################################
# 2. Syncing #
###############################################################
push:
rsync -avc ./ $(DEVEL_PATH)/
pushd:
rsync -avc --delete ./ $(DEVEL_PATH)/
pull:
rsync -avc $(DEVEL_PATH)/ ./
pulld:
rsync -avc --delete $(DEVEL_PATH)/ ./
###############################################################
# Inventory #
###############################################################
.PHONY: all amd64 arm64 push pushd pull pulld