1
0
mirror of https://github.com/pgrondek/config.git synced 2024-11-22 20:13:43 +00:00
config/bash/Makefile

16 lines
287 B
Makefile
Raw Normal View History

BASH_ALIASES=.bash_aliases
BASH_ALIASES_OUT=$(HOME)/.bash_aliases
BASHRC=bashrc
BASHRC_OUT=$(HOME)/.bashrc
.PHONY: clean_install
clean_install: clean install
clean:
rm -f $(BASH_ALIASES_OUT) $(BASHRC_OUT)
install:
cp $(BASH_ALIASES) $(BASH_ALIASES_OUT)
cp $(BASHRC) $(BASHRC_OUT)