summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@cryptonomic.net>2021-10-23 11:59:14 -0400
committerAndrew Cady <d@cryptonomic.net>2021-10-23 11:59:14 -0400
commitc1f1b3f92b8e7da270ae2ff9acb690d09526e255 (patch)
tree792ba89edb1b2179edef90f680e2858a5c5ea0fc
parent71d846c84b47109830bdb7a484810bc4640a0179 (diff)
make target "shared"
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bd63693..7e1a74c 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,11 @@ SSHD_CONFIG_DIR = $(SSH_CONFIG_DIR)/sshd_config.d
13SSH_LIB_DIR = /usr/lib/ssh 13SSH_LIB_DIR = /usr/lib/ssh
14USER_SSH_CONFIG_DIR = ~$(USER)/.ssh 14USER_SSH_CONFIG_DIR = ~$(USER)/.ssh
15 15
16.PHONY: install 16.PHONY: install shared
17
18shared: install
19 git config core.self-forge true
20
17install: 21install:
18 install -t $(USER_SSH_CONFIG_DIR) AnonymousAccessCommand 22 install -t $(USER_SSH_CONFIG_DIR) AnonymousAccessCommand
19 $(ROOT_INSTALL) -d "$(SSH_CONFIG_DIR)" "$(SSHD_CONFIG_DIR)" "$(SSH_LIB_DIR)" || true 23 $(ROOT_INSTALL) -d "$(SSH_CONFIG_DIR)" "$(SSHD_CONFIG_DIR)" "$(SSH_LIB_DIR)" || true