Skip to content

Commit

Permalink
removed the necessity of 4th character
Browse files Browse the repository at this point in the history
changed connection selection command from "conn-direct" to "comm-direct"
(communicate directly) and "conn-over-proxy" to "comm-tunnel" accordingly
in order to get rid of typing a 4th character since there is "make configure"
command
  • Loading branch information
Cerem Cem ASLAN committed Apr 19, 2018
1 parent 32f69c1 commit b3621f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions toolset-makefile.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ SHELL := /bin/bash
# PWD that the main Makefile runs
PROJECT_ROOT := $(THIS_DIR)

DIRECT_SESSION := using-direct-connection
PROXY_SESSION := using-proxy-connection
DIRECT_SESSION := comm-direct
PROXY_SESSION := comm-tunnel

UP_TO_DATE := up-to-date

Expand All @@ -28,11 +28,11 @@ UP_TO_DATE := up-to-date
@rm $(DIRECT_SESSION) 2> /dev/null; true
@rm $(PROXY_SESSION) 2> /dev/null; true

conn-direct: .clean-session
comm-direct: .clean-session
@echo "creating direct session..."
touch $(DIRECT_SESSION)

conn-over-proxy: .clean-session
comm-tunnel: .clean-session
@echo "creating proxy session..."
touch $(PROXY_SESSION)

Expand Down

0 comments on commit b3621f7

Please sign in to comment.