12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- define npm_script_targets
- TARGETS := $(shell node -e 'for (var k in require("./package.json").scripts) {console.log(k.replace(/:/g, "-"));}')
- $$(TARGETS):
- npm run $(subst -,:,$(MAKECMDGOALS))
- .PHONY: $$(TARGETS)
- endef
- $(eval $(call npm_script_targets))
- install:
- npm install
|