summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: c6bb20a97619145f5bc7e24c1a08e9c470aa309d (plain)
1
2
3
4
5
6
7
8
9
10
11
FILES = update-xrdb.sh
DIR = /usr/local/bin/

chmod:
	chmod 777 *.sh

install:
	cp -f $(FILES) $(DIR)

uninstall:
	rm -f $(DIR)$(FILES)