From 007f26c7a5c9965c06db29f904efc9ca23b6e80d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Boh=C3=A1=C4=8Dek?= Date: Tue, 29 Jun 2021 19:35:43 +0200 Subject: [PATCH] feat: add run file browser make target --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index d5fcab8855b7a44876da90b71150fcb34262eea3..1f0bece7537f5e83c1f434cd73a5a972fbfc7435 100644 --- a/Makefile +++ b/Makefile @@ -75,6 +75,9 @@ copy-executable: all ssh $(SSH_OPTIONS) $(TARGET_USER)@$(TARGET_IP) mv $(TARGET_DIR)/bin/* $(TARGET_DIR) ssh $(SSH_OPTIONS) $(TARGET_USER)@$(TARGET_IP) mv $(TARGET_DIR)/copy/* $(TARGET_DIR) +run: copy-executable + ssh $(SSH_OPTIONS) -t $(TARGET_USER)@$(TARGET_IP) $(TARGET_DIR)/file-browser $(ARG) + run-image-viewer: copy-executable ssh $(SSH_OPTIONS) -t $(TARGET_USER)@$(TARGET_IP) $(TARGET_DIR)/image-viewer $(ARG)