diff options
Diffstat (limited to 'xorg-server/Makefile')
-rw-r--r-- | xorg-server/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xorg-server/Makefile b/xorg-server/Makefile index 29edef7..72de69f 100644 --- a/xorg-server/Makefile +++ b/xorg-server/Makefile @@ -17,10 +17,16 @@ install: $(CHECK_INSTALLED) xorg-xmodmap mkdir -p -- ~/.local/bin ln -sf -- ~/.dotfiles/xorg-server/setkeys ~/.local/bin/ + test -d xkbdbind || git clone 'git://git.maandree.se/xkbdbind' + gpp -s '%%' < xkbdbind.config.h.gpp > xkbdbind/config.h + make -C xkbdbind + ln -sf -- ~/.dotfiles/xorg-server/xkbdbind/xkbdbind ~/.local/bin/ uninstall: -unlink -- ~/.config/backgrounds -unlink -- ~/.config/background -unlink -- ~/.local/bin/setkeys + -unlink -- ~/.local/bin/xkdbind + -rm -rf -- xkbdbind .PHONY: install uninstall |