Colorful ls on FreeBSD

This commit is contained in:
Andrea Rogers 2024-04-25 07:42:47 +00:00
commit 4a72ec1c69
3 changed files with 14 additions and 1 deletions

View file

@ -13,7 +13,8 @@ ifeq ($(UNAME),Darwin)
INSTALL = ginstall
OPEN = open
else ifeq ($(UNAME),FreeBSD)
DEFAULT_TARGETS += $(HOME)/.bashrc
DEFAULT_TARGETS += $(HOME)/.bashrc \
$(HOME)/.bashrc.freebsd
PROFILE = .profile
INSTALL = ginstall
OPEN = xdg-open
@ -45,6 +46,9 @@ $(HOME)/.profile: $(PROFILE)
$(HOME)/.bashrc: .bashrc
cp $< $@
$(HOME)/.bashrc.freebsd: .bashrc.freebsd
cp $< $@
/opt/local/etc/bashrc: .bashrc
sudo cp $< $@