-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
42 lines (29 loc) · 833 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
TOP_DIR=.
README=$(TOP_DIR)/README.md
VERSION=$(strip $(shell cat version))
build:
@echo "Building the software..."
init: install dep
@echo "Initializing the repo..."
github-action-init:
@echo "Initializing the repo..."
@sudo npm install -g @blocklet/cli
install:
@echo "Install software required for this repo..."
@npm install -g yarn @blocklet/cli
dep:
@echo "Install dependencies required for this repo..."
test:
@echo "Running test suites..."
lint:
@echo "Linting the software..."
doc:
@echo "Building the documenation..."
clean:
@echo "Cleaning the build..."
@rm -rf .blocklet
run:
@echo "Running the software..."
@DEBUG=@arcblock/* yarn start
include .makefiles/*.mk
.PHONY: build init install dep pre-build post-build all test doc precommit github-action-test clean watch run bump-version create-pr