Add support for custom makefile (#45)
* Add support for custom makefile * Add documention
This commit is contained in:
parent
43af4d9cfe
commit
5763d2f9f3
2 changed files with 6 additions and 0 deletions
5
Makefile
5
Makefile
|
@ -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
1
build/custom.mk
Normal file
|
@ -0,0 +1 @@
|
||||||
|
# Include custome targets and environment variables here
|
Reference in a new issue