change makefile
This commit is contained in:
parent
be04461863
commit
2f31ef10d7
28
Makefile
28
Makefile
|
@ -1,35 +1,33 @@
|
|||
LOCATION="$(HOME)/.config"
|
||||
DATA="$(HOME)/.local/share"
|
||||
install_local: location_setup install_bspwm install_nvim install_sx install_sxhkd install_zathura install_simplestatus install_bash install_ssh install_git install_tridactyl install_htop install_python
|
||||
install_local: location_setup install_bspwm install_nvim install_sx install_sxhkd install_zathura install_bash install_ssh install_git install_tridactyl install_htop install_python
|
||||
firefox: .firefox_env
|
||||
install: .environment
|
||||
|
||||
location_setup:
|
||||
mkdir -p $(LOCATION) $(DATA)
|
||||
mkdir -p $(LOCATION)/
|
||||
install_bspwm:
|
||||
ln -sf $(CURDIR)/bspwm $(LOCATION)/bspwm
|
||||
ln -sf $(CURDIR)/bspwm $(LOCATION)/
|
||||
install_nvim:
|
||||
ln -sf $(CURDIR)/nvim $(LOCATION)/nvim
|
||||
ln -sf $(CURDIR)/nvim $(LOCATION)/
|
||||
install_sx:
|
||||
ln -sf $(CURDIR)/sx $(LOCATION)/sx
|
||||
ln -sf $(CURDIR)/sx $(LOCATION)/
|
||||
install_sxhkd:
|
||||
ln -sf $(CURDIR)/sxhkd $(LOCATION)/sxhkd
|
||||
ln -sf $(CURDIR)/sxhkd $(LOCATION)/
|
||||
install_zathura:
|
||||
ln -sf $(CURDIR)/zathura $(LOCATION)/zathura
|
||||
install_simplestatus:
|
||||
ln -sf $(CURDIR)/simplestatus $(LOCATION)/simplestatus
|
||||
ln -sf $(CURDIR)/zathura $(LOCATION)/
|
||||
install_bash:
|
||||
ln -sf $(CURDIR)/bash $(LOCATION)/bash
|
||||
ln -sf $(CURDIR)/bash $(LOCATION)/
|
||||
install_ssh:
|
||||
ln -sf $(CURDIR)/ssh $(LOCATION)/ssh
|
||||
ln -sf $(CURDIR)/ssh $(LOCATION)/
|
||||
install_git:
|
||||
ln -sf $(CURDIR)/git $(LOCATION)/git
|
||||
ln -sf $(CURDIR)/git $(LOCATION)/
|
||||
install_tridactyl:
|
||||
ln -sf $(CURDIR)/tridactyl $(LOCATION)/tridactyl
|
||||
ln -sf $(CURDIR)/tridactyl $(LOCATION)/
|
||||
install_htop:
|
||||
ln -sf $(CURDIR)/htop $(LOCATION)/htop
|
||||
ln -sf $(CURDIR)/htop $(LOCATION)/
|
||||
install_python:
|
||||
ln -sf $(CURDIR)/python $(LOCATION)/python
|
||||
ln -sf $(CURDIR)/python $(LOCATION)/
|
||||
.environment:
|
||||
sh environ
|
||||
.firefox_env:
|
||||
|
|
Loading…
Reference in New Issue