#Location of your executable
MKWS_BIN = ~/public_html/bin/mkws

# Source URL
URL = https://dflund.se/~getz

all: run_command

# The actual rule to build the target
run_command:
	$(MKWS_BIN) $(URL)

.PHONY: all run_command  # Declare phony targets
