branch: externals/graphql commit e2b309689f4faf9225f290080f836e988c5a576d Author: Sean Allred <c...@seanallred.com> Commit: Sean Allred <c...@seanallred.com>
Add 'clean' target --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e1a414b4ac..ca524803d3 100644 --- a/Makefile +++ b/Makefile @@ -3,12 +3,17 @@ EMAKE_SHA1 ?= $(shell yq r .travis.yml 'env.global[0]' | cut -d= -f2) PACKAGE_BASENAME := graphql .DEFAULT_GOAL: help +.PHONY: clean emake.mk: export EMAKE_SHA1 := $(EMAKE_SHA1) -emake.mk: ## download the emake Makefile +emake.mk: ## download the emake Makefile # we use yq to retrieve the before_install command. # upon expansion, that command will be run with this target. rm -f emake.mk $(shell yq r .travis.yml 'before_install[0]') include emake.mk + +clean: + rm -rf .emake/ + rm -f *.elc