BE := bundle exec JEKYLL := $(BE) jekyll HTMLPROOF := $(BE) htmlproofer # MAIN TASKS ################################################################### .PHONY: all all: test ## Run all tasks that determine CI status # SYSTEM DEPENDENCIES ########################################################## .PHONY: bootstrap bootstrap: ## Attempt to install system dependencies asdf plugin add ruby || asdf plugin update ruby asdf plugin add bundler || asdf plugin update bundler asdf install .PHONY: doctor doctor: ## Confirm system dependencies are available bin/verchew # PROJECT DEPENDENCIES ######################################################### GEMS := vendor/bundler/.flag .PHONY: install install: $(GEMS) ## Install all project dependencies $(GEMS): Gemfile* @ bundle config set path vendor/bundler bundle install @ touch $@ .PHONY: update update: ## Update all project dependencies bundle update # SERVER TARGETS ############################################################### PORT ?= 3000 .PHONY: run run: install music resume $(JEKYLL) serve --port=$(PORT) --livereload --future --drafts .PHONY: launch launch: install eval "sleep 4 && open http://localhost:$(PORT)" & make run # BUILD ######################################################################## RESUME := $(HOME)/Downloads/Jace Browning's Resume.pdf URL := jacebrowning.info .PHONY: build build: install music resume $(JEKYLL) build echo $(URL) > _site/CNAME .PHONY: music music: music.md music.md: scripts/music.py python $< .PHONY: resume resume: @ if [ -f "$(RESUME)" ]; then \ mv "$(RESUME)" downloads/; \ fi # TEST ######################################################################## .PHONY: test test: install build ## Check site content $(JEKYLL) doctor $(HTMLPROOF) _site --no-enforce-http --ignore-status-codes 0,301,403,999 --ignore-urls "https://www.meetup.com/PyLadiesGrandRapids/" # CLEANUP ###################################################################### .PHONY: clean clean: ## Delete all generated and temporary files rm -rf $(GEMS) # HELP ######################################################################### .PHONY: help help: install music resume @ grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' .DEFAULT_GOAL := help