Makefile at [5996946805]

File Makefile artifact 5748b48539 part of check-in 5996946805


PREFIX = /usr/local
prefix = $(PREFIX)
bindir = $(prefix)/bin

all:
	@echo 'Nothing to do'

install: rdp.sh
	mkdir -p '$(DESTDIR)$(bindir)'
	cp rdp.sh '$(DESTDIR)$(bindir)'

.PHONY: all install