Add support for custom makefile (#45)

* Add support for custom makefile

* Add documention
This commit is contained in:
Hanzei 2019-06-25 01:50:25 +02:00 committed by Maria A Nunez
parent 43af4d9cfe
commit 5763d2f9f3
2 changed files with 6 additions and 0 deletions

View file

@ -14,6 +14,11 @@ include build/setup.mk
BUNDLE_NAME ?= $(PLUGIN_ID)-$(PLUGIN_VERSION).tar.gz BUNDLE_NAME ?= $(PLUGIN_ID)-$(PLUGIN_VERSION).tar.gz
# Include custom makefile, if pressent
ifneq ($(wildcard build/custom.mk),)
include build/custom.mk
endif
## Checks the code style, tests, builds and bundles the plugin. ## Checks the code style, tests, builds and bundles the plugin.
all: check-style test dist all: check-style test dist

1
build/custom.mk Normal file
View file

@ -0,0 +1 @@
# Include custome targets and environment variables here