1 changed file
Makefile | ||
Add comment 4 #
Add comment 5 # vim:ts=4:sts=4:sw=4:noet
Add comment 6 #
Add comment 7 Minus # https://github.com/HariSekhon/Template-Repo
Add comment 7 Plus # https://github.com/HariSekhon/Environments
Add comment 8 #
Add comment 9 # If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback
Add comment 10 #
Add comment 20 #
Add comment 21 # Alpine:
Add comment 22 #
Add comment 23 Minus # apk add --no-cache git make && git clone https://github.com/HariSekhon/Template-repo repo && cd repo && make
Add comment 23 Plus # apk add --no-cache git make && git clone https://github.com/HariSekhon/Environments repo && cd repo && make
Add comment 24 #
Add comment 25 # Debian / Ubuntu:
Add comment 26 #
Add comment 27 Minus # apt-get update && apt-get install -y make git && git clone https://github.com/HariSekhon/Template-repo repo && cd repo && make
Add comment 27 Plus # apt-get update && apt-get install -y make git && git clone https://github.com/HariSekhon/Environments repo && cd repo && make
Add comment 28 #
Add comment 29 # RHEL / CentOS:
Add comment 30 #
Add comment 31 Minus # yum install -y make git && git clone https://github.com/HariSekhon/Template-repo repo && cd repo && make
Add comment 31 Plus # yum install -y make git && git clone https://github.com/HariSekhon/Environments repo && cd repo && make
Add comment 32
Add comment 33 # ===================
Add comment 34
Add comment 36 include bash-tools/Makefile.in
Add comment 37 endif
Add comment 38
Add comment 39 Minus REPO := HariSekhon/Template-Repo
Add comment 39 Plus REPO := HariSekhon/Environments
Add comment 40
Add comment 41 CODE_FILES := $(shell git ls-files | grep -E -e '\.sh$$' -e '\.py$$' | sort)
Add comment 42
Add comment 43 .PHONY: build
Add comment 44 build: init
Add comment 45 @echo ================
Add comment 46 Minus @echo Template-repo Builds
Add comment 46 Plus @echo Environments Builds
Add comment 47 @echo ================
Add comment 48 @$(MAKE) git-summary
Add comment 49 @echo
Add comment 74 @echo
Add comment 75 $(MAKE) pycompile
Add comment 76 @echo
Add comment 77 Minus @echo 'BUILD SUCCESSFUL (Template-Repo)'
Add comment 77 Plus @echo 'BUILD SUCCESSFUL (Environments)'
Add comment 78
Add comment 79 .PHONY: test
Add comment 80 test: