aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 052bd4d5c9c6cc0b9270dd917aa54e01a6d293b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
VMS_CMD = vms
VMS_CMD_PATH = $(DESTDIR)$(PREFIX)/bin/$(VMS_CMD)
VMS_BASH_FILE = $(VMS_CMD).sh

.PHONY: all install uninstall

all: install

install: $(VMS_BASH_FILE)
	mkdir -p $(DESTDIR)$(PREFIX)/bin
	cp $(VMS_BASH_FILE) $(VMS_CMD_PATH)
	chmod 755 $(VMS_CMD_PATH)
	
uninstall:
	rm -f $(VMS_CMD_PATH)