-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
87 lines (67 loc) · 1.35 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# vim: ts=8:sw=8
ENCRYPTED_PATH := src/encrypted
DECRYPTED_PATH := $(shell cat ENV_DECRYPTED_PATH)
FILES := ""
IGNORE := ! -name ".git" ! -name "Session.vim"
GPG_FILES_SRC := $(shell find $(ENCRYPTED_PATH) -type f -name "*.gpg" $(IGNORE))
GPG_FILES_OUT := $(patsubst $(ENCRYPTED_PATH)/%.gpg,$(DECRYPTED_PATH)/%,$(GPG_FILES_SRC))
.PHONY: help
help:
@cat ./help
#########
# #
# RuleZ #
# #
#########
.PHONY: init
init: create-dots bootstrap-key decrypt
# Crypto
########
.PHONY: encrypt
encrypt:
@./src/bin/encrypt.sh
.PHONY: decrypt
decrypt: $(GPG_FILES_OUT) post-decrypt
$(DECRYPTED_PATH)/%: $(ENCRYPTED_PATH)/%.gpg
@mkdir -p $(dir $@)
@echo "[Decrypting] $<"
@./src/bin/decrypt.sh $< > $@
.PHONY: update
update: clean decrypt
# Git management
################
.PHONY: show
show:
@./src/bin/show.sh $(FILES)
.PHONY: diff
diff:
@./src/bin/diff.sh
.PHONY: status
status:
@echo "dots"
@echo "===="
@echo
@cd dots && git status
.PHONY: checkout
checkout:
@echo "dots"
@echo "===="
@echo
@cd dots && git checkout .
.PHONY: clean
clean:
@rm -rf $(DECRYPTED_PATH)
################
# #
# Helper Rules #
# #
################
.PHONY: post-decrypt
post-decrypt:
@./src/bin/git-init.sh
.PHONY: bootstrap-key
bootstrap-key:
@./src/bin/bootstrap-key.sh
.PHONY: create-dots
create-dots:
@mkdir -p $(DECRYPTED_PATH)