You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
1.6 KiB
Makefile

#
# Author: Hari Sekhon
# Date: 2016-01-17 12:56:53 +0000 (Sun, 17 Jan 2016)
#
# vim:ts=4:sts=4:sw=4:noet
#
# https://github.com/harisekhon/bash-tools
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback
#
# https://www.linkedin.com/in/harisekhon
#
REPO := HariSekhon/DevOps-Bash-tools
CODE_FILES := $(shell find . -type f -name '*.sh' -o -name .bashrc | sort)
CONF_FILES := \
.ansible.cfg \
.editorconfig \
.gitconfig \
.gitignore \
.my.cnf \
.toprc \
.tmux.conf \
.vimrc \
.Xdefaults \
.Xmodmap
include Makefile.in
.PHONY: build
build: system-packages aws
@:
.PHONY: install
install: build bash python aws
.PHONY: bash
bash:
@setup/setup_bash.sh
@echo "linking dot files to \$$HOME directory: $$HOME"
@f=""; [ -n "$$FORCE" ] && f="-f"; \
for filename in $(CONF_FILES); do \
ln -sv $$f "$$PWD/$$filename" ~ 2>/dev/null; \
done || :
@ln -sv $$f ~/.gitignore ~/.gitignore_global 2>/dev/null || :
.PHONY: python
python:
@./python_pip_install_if_absent.sh setup/pip-packages-desktop.txt
.PHONY: aws
aws:
@./python_pip_install_if_absent.sh awscli
.PHONY: test
test:
./all.sh
.PHONY: clean
clean:
@echo Nothing to clean
.PHONY: showscripts
showscripts:
@$(MAKE) showfiles | grep -v -e '/kafka_wrappers/' -e '/lib/' -e '\.bash'
.PHONY: wcscripts
wcscripts:
@$(MAKE) showscripts | xargs wc -l
@printf "Total Scripts: "
@$(MAKE) showscripts | wc -l
.PHONY: wcscripts2
wcscripts2:
@printf "Total Scripts: "
@$(MAKE) showscripts | wc -l
@printf "Total line count without # comments: "
@$(MAKE) showscripts | xargs sed 's/#.*//;/^[[:space:]]*$$/d' | wc -l