diff options
author | Mattias Andrée <maandree@kth.se> | 2021-06-26 14:04:42 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-06-26 14:04:42 +0200 |
commit | 13096e0f271be8140c3546d0c50234c355b56d5f (patch) | |
tree | b4ac6adc7f881c6d3241d621f66160e7eda3e62f /base | |
parent | Add xpybar (diff) | |
download | dotfiles-13096e0f271be8140c3546d0c50234c355b56d5f.tar.gz dotfiles-13096e0f271be8140c3546d0c50234c355b56d5f.tar.bz2 dotfiles-13096e0f271be8140c3546d0c50234c355b56d5f.tar.xz |
Add radharc wrapper, iswork bin, and secret bins
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'base')
-rw-r--r-- | base/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/base/Makefile b/base/Makefile index dd780a6..607a0da 100644 --- a/base/Makefile +++ b/base/Makefile @@ -29,6 +29,11 @@ install: test -L ~/.config/locations/current || ln -sf default ~/.config/locations/current ln -sf locations/current/geolocation ~/.config/geolocation ln -sf locations/current/metar ~/.config/metar + mkdir -p -- ~/.local/bin + test ! -d ~/.local/bin/iswork + test -x /bin/false + ln -sf -- /bin/false ~/.local/bin/iswork + test ! -r ../.secrets/bin/Makefile || make -C ../.secrets/bin install uninstall: -unlink -- ~/.config/profile @@ -37,5 +42,7 @@ uninstall: -unlink -- ~/.config/locations -unlink -- ~/.config/geolocation -unlink -- ~/.config/metar + -unlink -- ~/.local/bin/iswork + -test ! -r ../.secrets/bin/Makefile || make -C ../.secrets/bin uninstall .PHONY: install uninstall |