-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
50 lines (33 loc) · 1.19 KB
/
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
43
44
45
46
47
48
49
50
################################################################################
# Git Submodule Routines
################################################################################
# https://faun.pub/git-submodule-cheatsheet-29a3bfe443c3
submodule-init:
git submodule update --init --recursive
submodule-update:
git submodule update --recursive
submodule-sync:
git submodule update --remote --recursive
git submodule sync
submodule-deinit:
git submodule deinit --all --force
@PHONY: submodule-*
################################################################################
# Dev Targets
################################################################################
build: build-evm-contracts
build-evm-contracts:
make -C packages/evm-contracts build
lint: lint-evm-contracts
lint-evm-contracts:
make -C packages/evm-contracts lint
test: test-ci-evm-contracts
test-tdd-evm-contracts: build-evm-contracts
make -C packages/evm-contracts test-tdd
test-ci-evm-contracts: build-evm-contracts
make -C packages/evm-contracts test-ci
test-coverage-evm-contracts: build-evm-contracts
make -C packages/evm-contracts test-coverage
@PHONY: build build-* lint lint-* test test-*
love:
sl | lolcat