diff options
| author | Mattias Andrée <maandree@kth.se> | 2021-06-26 14:59:09 +0200 | 
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2021-06-26 14:59:09 +0200 | 
| commit | f62eca657a79ef81089f3c34cdf837d7463581db (patch) | |
| tree | b8bdf542c8bee229c51e9cdcaf150d68f6d2e365 /dmenu/Makefile | |
| parent | Add setkeys and setres (diff) | |
| download | dotfiles-f62eca657a79ef81089f3c34cdf837d7463581db.tar.gz dotfiles-f62eca657a79ef81089f3c34cdf837d7463581db.tar.bz2 dotfiles-f62eca657a79ef81089f3c34cdf837d7463581db.tar.xz  | |
Add ipa, man, and unicode scripts
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'dmenu/Makefile')
| -rw-r--r-- | dmenu/Makefile | 19 | 
1 files changed, 19 insertions, 0 deletions
diff --git a/dmenu/Makefile b/dmenu/Makefile new file mode 100644 index 0000000..151ba9c --- /dev/null +++ b/dmenu/Makefile @@ -0,0 +1,19 @@ +.POSIX: +include ../common.mk + +install: +	$(CHECK_INSTALLED) dash +	$(CHECK_INSTALLED) vis +	make -C unicode.d +	mkdir -p -- ~/.local/bin +	ln -sf -- ~/.dotfiles/dmenu/man ~/.local/bin/ +	ln -sf -- ~/.dotfiles/dmenu/ipa ~/.local/bin/ +	ln -sf -- ~/.dotfiles/dmenu/unicode ~/.local/bin/ + +uninstall: +	-unlink -- ~/.local/bin/man +	-unlink -- ~/.local/bin/ipa +	-unlink -- ~/.local/bin/unicode +	-make -C unicode.d reallyclean + +.PHONY: install uninstall  | 
