2018-03-28 14:22:52 +03:00
PKG := github.com/lightningnetwork/lnd
2018-03-29 08:16:18 +03:00
ESCPKG := github.com\/ lightningnetwork\/ lnd
2019-01-24 16:51:06 +03:00
MOBILE_PKG := $( PKG) /mobile
2018-03-29 08:16:18 +03:00
2018-06-05 04:35:45 +03:00
BTCD_PKG := github.com/btcsuite/btcd
2018-03-29 08:16:18 +03:00
GOVERALLS_PKG := github.com/mattn/goveralls
2019-09-19 00:05:11 +03:00
LINT_PKG := github.com/golangci/golangci-lint/cmd/golangci-lint
2019-01-18 14:17:58 +03:00
GOACC_PKG := github.com/ory/go-acc
2020-07-15 17:36:59 +03:00
GOIMPORTS_PKG := golang.org/x/tools/cmd/goimports
2020-09-23 15:55:08 +03:00
GOFUZZ_BUILD_PKG := github.com/dvyukov/go-fuzz/go-fuzz-build
GOFUZZ_PKG := github.com/dvyukov/go-fuzz/go-fuzz
2018-03-29 08:16:18 +03:00
GO_BIN := ${ GOPATH } /bin
BTCD_BIN := $( GO_BIN) /btcd
2019-01-24 16:51:06 +03:00
GOMOBILE_BIN := GO111MODULE = off $( GO_BIN) /gomobile
2018-03-29 08:16:18 +03:00
GOVERALLS_BIN := $( GO_BIN) /goveralls
2019-07-22 12:05:57 +03:00
LINT_BIN := $( GO_BIN) /golangci-lint
2019-01-18 14:17:58 +03:00
GOACC_BIN := $( GO_BIN) /go-acc
2020-09-23 15:55:08 +03:00
GOFUZZ_BUILD_BIN := $( GO_BIN) /go-fuzz-build
GOFUZZ_BIN := $( GO_BIN) /go-fuzz
2018-03-29 08:16:18 +03:00
2019-01-24 16:51:06 +03:00
MOBILE_BUILD_DIR := ${ GOPATH } /src/$( MOBILE_PKG) /build
IOS_BUILD_DIR := $( MOBILE_BUILD_DIR) /ios
IOS_BUILD := $( IOS_BUILD_DIR) /Lndmobile.framework
2019-01-24 16:51:06 +03:00
ANDROID_BUILD_DIR := $( MOBILE_BUILD_DIR) /android
ANDROID_BUILD := $( ANDROID_BUILD_DIR) /Lndmobile.aar
2018-03-29 08:16:18 +03:00
2020-12-21 15:03:14 +03:00
COMMIT := $( shell git describe --tags --dirty)
2020-04-10 03:04:25 +03:00
COMMIT_HASH := $( shell git rev-parse HEAD)
2018-01-29 19:11:03 +03:00
2018-12-04 15:50:46 +03:00
BTCD_COMMIT := $( shell cat go.mod | \
2018-11-29 04:17:38 +03:00
grep $( BTCD_PKG) | \
2020-12-03 13:30:27 +03:00
head -n1 | \
2018-11-29 04:17:38 +03:00
awk -F " " '{ print $$2 }' | \
awk -F "/" '{ print $$1 }' )
2018-03-29 08:16:18 +03:00
2019-09-19 00:05:11 +03:00
LINT_COMMIT := v1.18.0
2019-01-18 14:17:58 +03:00
GOACC_COMMIT := ddc355013f90fea78d83d3a6c71f1d37ac07ecd5
2020-09-23 15:55:08 +03:00
GOFUZZ_COMMIT := 21309f307f61
2019-01-18 14:17:58 +03:00
2019-09-19 00:03:18 +03:00
DEPGET := cd /tmp && GO111MODULE = on go get -v
2019-09-20 00:34:38 +03:00
GOBUILD := GO111MODULE = on go build -v
GOINSTALL := GO111MODULE = on go install -v
2019-11-22 16:12:09 +03:00
GOTEST := GO111MODULE = on go test
2018-03-29 08:16:18 +03:00
2020-04-10 03:05:24 +03:00
GOVERSION := $( shell go version | awk '{print $$3}' )
2020-11-24 14:34:31 +03:00
GOFILES_NOVENDOR = $( shell find . -type f -name '*.go' -not -path "./vendor/*" -not -name "*pb.go" -not -name "*pb.gw.go" )
2018-03-29 08:16:18 +03:00
2018-08-10 09:17:07 +03:00
RM := rm -f
CP := cp
MAKE := make
2018-10-26 03:10:49 +03:00
XARGS := xargs -L 1
2018-08-10 09:17:07 +03:00
i n c l u d e m a k e / t e s t i n g _ f l a g s . m k
2020-04-21 11:19:58 +03:00
i n c l u d e m a k e / r e l e a s e _ f l a g s . m k
2020-09-23 15:55:08 +03:00
i n c l u d e m a k e / f u z z _ f l a g s . m k
2018-08-10 09:17:07 +03:00
2018-09-26 14:31:40 +03:00
DEV_TAGS := $( if ${ tags } ,$( DEV_TAGS) ${ tags } ,$( DEV_TAGS) )
2020-04-21 11:19:58 +03:00
# We only return the part inside the double quote here to avoid escape issues
# when calling the external release script. The second parameter can be used to
# add additional ldflags if needed (currently only used for the release).
make_ldflags = $( 2) -X $( PKG) /build.Commit= $( COMMIT) \
2020-04-10 03:04:55 +03:00
-X $( PKG) /build.CommitHash= $( COMMIT_HASH) \
2020-04-10 03:05:24 +03:00
-X $( PKG) /build.GoVersion= $( GOVERSION) \
2020-04-21 11:19:58 +03:00
-X $( PKG) /build.RawTags= $( shell echo $( 1) | sed -e 's/ /,/g' )
2020-04-10 03:04:55 +03:00
2020-05-07 21:20:59 +03:00
LDFLAGS := -ldflags " $( call make_ldflags, ${ tags } , -s -w) "
2020-04-21 11:19:58 +03:00
DEV_LDFLAGS := -ldflags " $( call make_ldflags, $( DEV_TAGS) ) "
ITEST_LDFLAGS := -ldflags " $( call make_ldflags, $( ITEST_TAGS) ) "
# For the release, we want to remove the symbol table and debug information (-s)
# and omit the DWARF symbol table (-w). Also we clear the build ID.
RELEASE_LDFLAGS := $( call make_ldflags, $( RELEASE_TAGS) , -s -w -buildid= )
2020-04-10 03:04:55 +03:00
2020-03-28 12:39:17 +03:00
# Linting uses a lot of memory, so keep it under control by limiting the number
# of workers if requested.
i f n e q ( $( workers ) , )
LINT_WORKERS = --concurrency= $( workers)
e n d i f
LINT = $( LINT_BIN) run -v $( LINT_WORKERS)
2018-03-29 08:16:18 +03:00
GREEN := "\\033[0;32m"
NC := "\\033[0m"
d e f i n e p r i n t
echo $( GREEN) $1 $( NC)
e n d e f
default : scratch
all : scratch check install
# ============
# DEPENDENCIES
# ============
$(GOVERALLS_BIN) :
@$( call print, "Fetching goveralls." )
go get -u $( GOVERALLS_PKG)
$(LINT_BIN) :
2019-07-22 12:05:57 +03:00
@$( call print, "Fetching linter" )
2019-09-19 00:05:11 +03:00
$( DEPGET) $( LINT_PKG) @$( LINT_COMMIT)
2018-03-29 08:16:18 +03:00
2019-01-18 14:17:58 +03:00
$(GOACC_BIN) :
@$( call print, "Fetching go-acc" )
2019-09-19 00:03:18 +03:00
$( DEPGET) $( GOACC_PKG) @$( GOACC_COMMIT)
2019-01-18 14:17:58 +03:00
2018-12-03 02:43:26 +03:00
btcd :
2018-12-01 02:20:50 +03:00
@$( call print, "Installing btcd." )
2019-09-19 00:03:18 +03:00
$( DEPGET) $( BTCD_PKG) @$( BTCD_COMMIT)
2018-01-29 19:11:03 +03:00
2020-07-15 17:36:59 +03:00
goimports :
@$( call print, "Installing goimports." )
$( DEPGET) $( GOIMPORTS_PKG)
2020-09-23 15:55:08 +03:00
$(GOFUZZ_BIN) :
@$( call print, "Fetching go-fuzz" )
$( DEPGET) $( GOFUZZ_PKG) @$( GOFUZZ_COMMIT)
$(GOFUZZ_BUILD_BIN) :
@$( call print, "Fetching go-fuzz-build" )
$( DEPGET) $( GOFUZZ_BUILD_PKG) @$( GOFUZZ_COMMIT)
2018-03-29 08:16:18 +03:00
# ============
# INSTALLATION
# ============
2018-01-29 19:11:03 +03:00
2018-03-29 08:16:18 +03:00
build :
2018-04-29 14:49:14 +03:00
@$( call print, "Building debug lnd and lncli." )
2020-04-10 03:04:55 +03:00
$( GOBUILD) -tags= " $( DEV_TAGS) " -o lnd-debug $( DEV_LDFLAGS) $( PKG) /cmd/lnd
$( GOBUILD) -tags= " $( DEV_TAGS) " -o lncli-debug $( DEV_LDFLAGS) $( PKG) /cmd/lncli
2018-03-28 14:22:52 +03:00
2018-11-02 11:49:32 +03:00
build-itest :
2020-12-03 13:30:27 +03:00
@$( call print, "Building itest btcd and lnd." )
CGO_ENABLED = 0 $( GOBUILD) -tags= "rpctest" -o lntest/itest/btcd-itest$( EXEC_SUFFIX) $( ITEST_LDFLAGS) $( BTCD_PKG)
CGO_ENABLED = 0 $( GOBUILD) -tags= " $( ITEST_TAGS) " -o lntest/itest/lnd-itest$( EXEC_SUFFIX) $( ITEST_LDFLAGS) $( PKG) /cmd/lnd
@$( call print, " Building itest binary for ${ backend } backend. " )
CGO_ENABLED = 0 $( GOTEST) -v ./lntest/itest -tags= " $( DEV_TAGS) $( RPC_TAGS) rpctest $( backend) " -c -o lntest/itest/itest.test$( EXEC_SUFFIX)
2020-07-31 11:32:30 +03:00
2018-03-28 14:22:52 +03:00
install :
2018-03-29 08:16:18 +03:00
@$( call print, "Installing lnd and lncli." )
2019-01-24 16:28:26 +03:00
$( GOINSTALL) -tags= " ${ tags } " $( LDFLAGS) $( PKG) /cmd/lnd
2018-12-01 02:20:47 +03:00
$( GOINSTALL) -tags= " ${ tags } " $( LDFLAGS) $( PKG) /cmd/lncli
2018-03-28 14:22:52 +03:00
2021-01-13 16:26:29 +03:00
release-install :
@$( call print, "Installing release lnd and lncli." )
env CGO_ENABLED = 0 $( GOINSTALL) -v -trimpath -ldflags= " $( RELEASE_LDFLAGS) " -tags= " $( RELEASE_TAGS) " $( PKG) /cmd/lnd
env CGO_ENABLED = 0 $( GOINSTALL) -v -trimpath -ldflags= " $( RELEASE_LDFLAGS) " -tags= " $( RELEASE_TAGS) " $( PKG) /cmd/lncli
2021-02-05 15:11:35 +03:00
# Make sure the generated mobile RPC stubs don't influence our vendor package
# by removing them first in the clean-mobile target.
release : clean -mobile
2020-04-21 11:19:58 +03:00
@$( call print, "Releasing lnd and lncli binaries." )
$( VERSION_CHECK)
2020-04-24 15:27:48 +03:00
./scripts/release.sh build-release " $( VERSION_TAG) " " $( BUILD_SYSTEM) " " $( RELEASE_TAGS) " " $( RELEASE_LDFLAGS) "
2020-04-21 11:19:58 +03:00
2021-02-17 18:58:29 +03:00
docker-release :
2021-01-08 12:40:17 +03:00
@$( call print, "Building release helper docker image." )
if [ " $( tag) " = "" ] ; then echo "Must specify tag=<commit_or_tag>!" ; exit 1; fi
docker build -t lnd-release-helper -f make/builder.Dockerfile make/
2021-02-17 18:58:29 +03:00
# Run the actual compilation inside the docker image. We pass in all flags
# that we might want to overwrite in manual tests.
$( DOCKER_RELEASE_HELPER) make release tag = " $( tag) " sys = " $( sys) " COMMIT = " $( COMMIT) " COMMIT_HASH = " $( COMMIT_HASH) "
2021-01-08 12:40:17 +03:00
2018-11-29 04:17:38 +03:00
scratch : build
2018-03-28 14:22:52 +03:00
2018-03-29 08:16:18 +03:00
# =======
2018-03-28 14:22:52 +03:00
# TESTING
2018-03-29 08:16:18 +03:00
# =======
2018-03-28 14:22:52 +03:00
2018-03-29 08:16:18 +03:00
check : unit itest
2018-03-28 14:22:52 +03:00
2018-12-03 02:43:26 +03:00
itest-only :
2019-05-24 15:17:48 +03:00
@$( call print, " Running integration tests with ${ backend } backend. " )
2020-12-03 13:30:25 +03:00
rm -rf lntest/itest/*.log lntest/itest/.logs-*; date
2020-12-03 13:30:26 +03:00
EXEC_SUFFIX = $( EXEC_SUFFIX) scripts/itest_part.sh 0 1 $( TEST_FLAGS) $( ITEST_FLAGS)
2020-04-07 18:22:26 +03:00
lntest/itest/log_check_errors.sh
2018-03-28 14:22:52 +03:00
2020-12-03 13:30:27 +03:00
itest : build -itest itest -only
2020-11-04 13:03:33 +03:00
2020-12-03 13:30:27 +03:00
itest-parallel : build -itest
2020-11-04 13:03:33 +03:00
@$( call print, "Running tests" )
2020-12-03 13:30:27 +03:00
rm -rf lntest/itest/*.log lntest/itest/.logs-*; date
2021-01-06 21:42:08 +03:00
EXEC_SUFFIX = $( EXEC_SUFFIX) echo " $$ (seq 0 $$ (expr $( ITEST_PARALLELISM) - 1)) " | xargs -P $( ITEST_PARALLELISM) -n 1 -I { } scripts/itest_part.sh { } $( NUM_ITEST_TRANCHES) $( TEST_FLAGS) $( ITEST_FLAGS)
2020-12-03 13:30:27 +03:00
lntest/itest/log_check_errors.sh
2020-07-31 11:32:30 +03:00
2018-03-29 08:16:18 +03:00
unit : btcd
@$( call print, "Running unit tests." )
$( UNIT)
2018-03-28 14:22:52 +03:00
2021-02-17 19:47:14 +03:00
unit-debug : btcd
@$( call print, "Running debug unit tests." )
$( UNIT_DEBUG)
2019-01-18 14:17:58 +03:00
unit-cover : $( GOACC_BIN )
2018-03-29 08:16:18 +03:00
@$( call print, "Running unit coverage tests." )
2020-08-21 03:07:05 +03:00
$( GOACC_BIN) $( COVER_PKG) -- -tags= " $( DEV_TAGS) $( LOG_TAGS) "
2019-05-21 13:33:07 +03:00
2018-12-03 02:43:26 +03:00
2018-03-29 08:16:18 +03:00
unit-race :
@$( call print, "Running unit race tests." )
2018-12-03 02:24:14 +03:00
env CGO_ENABLED = 1 GORACE = "history_size=7 halt_on_errors=1" $( UNIT_RACE)
2018-03-29 08:16:18 +03:00
2018-10-11 11:31:04 +03:00
goveralls : $( GOVERALLS_BIN )
@$( call print, "Sending coverage report." )
2019-01-18 14:17:58 +03:00
$( GOVERALLS_BIN) -coverprofile= coverage.txt -service= travis-ci
2018-10-11 11:31:04 +03:00
2018-12-01 02:20:45 +03:00
travis: staged travis builds
This PR introduces staging to our travis pipeline. Currently all
instances perform:
- compilation of lnd
- linting
- compilation and installation of btcd binaries
- installation of bitcoind binaries
In total this adds about 3 minutes to each of our 5 instances, resulting in
roughly 12 minutes of redundant execution time. Additionally, if if a build
fails to compile or lint we detect this 5 separate times, consuming precious
instances from other builds.
We alleviate this by adding an initial Build phase, which runs a single
instance performing the actions above. This has the benefit of quickly sanity
checking the pr before moving on to the more expensive unit or integration test
suites, and failing faster for common mistakes. It also warms up the build
caches for the Test stage in one fell swoop.
For instance, if 5 people push changes at the same time, they can all get
immediate feedback regarding compilation or linting issues, and potentially
save hours waiting for other people's test to finish or fail before finding out
they had a spelling error. This doesn't alleviate all possible issues, e.g. the
5 instances may already be consumed by test suites, but it does make a sizable
step towards minimizing time-to-failure in common scenarios.
2019-12-05 06:53:20 +03:00
travis-race : btcd unit -race
2019-02-01 02:36:56 +03:00
travis: staged travis builds
This PR introduces staging to our travis pipeline. Currently all
instances perform:
- compilation of lnd
- linting
- compilation and installation of btcd binaries
- installation of bitcoind binaries
In total this adds about 3 minutes to each of our 5 instances, resulting in
roughly 12 minutes of redundant execution time. Additionally, if if a build
fails to compile or lint we detect this 5 separate times, consuming precious
instances from other builds.
We alleviate this by adding an initial Build phase, which runs a single
instance performing the actions above. This has the benefit of quickly sanity
checking the pr before moving on to the more expensive unit or integration test
suites, and failing faster for common mistakes. It also warms up the build
caches for the Test stage in one fell swoop.
For instance, if 5 people push changes at the same time, they can all get
immediate feedback regarding compilation or linting issues, and potentially
save hours waiting for other people's test to finish or fail before finding out
they had a spelling error. This doesn't alleviate all possible issues, e.g. the
5 instances may already be consumed by test suites, but it does make a sizable
step towards minimizing time-to-failure in common scenarios.
2019-12-05 06:53:20 +03:00
travis-cover : btcd unit -cover goveralls
2018-12-01 02:20:45 +03:00
2018-03-29 08:16:18 +03:00
# =============
# FLAKE HUNTING
# =============
2019-01-17 12:24:32 +03:00
flakehunter : build -itest
2019-05-24 15:17:48 +03:00
@$( call print, " Flake hunting ${ backend } integration tests. " )
2020-12-03 13:30:25 +03:00
while [ $$ ? -eq 0 ] ; do make itest-only icase = '${icase}' backend = '${backend}' ; done
2018-03-29 08:16:18 +03:00
flake-unit :
@$( call print, "Flake hunting unit tests." )
2019-03-07 04:30:28 +03:00
while [ $$ ? -eq 0 ] ; do GOTRACEBACK = all $( UNIT) -count= 1; done
2018-03-29 08:16:18 +03:00
2020-11-07 15:23:30 +03:00
flakehunter-parallel :
@$( call print, " Flake hunting ${ backend } integration tests in parallel. " )
while [ $$ ? -eq 0 ] ; do make itest-parallel tranches = 1 parallel = ${ ITEST_PARALLELISM } icase = '${icase}' backend = '${backend}' ; done
2020-09-23 15:55:08 +03:00
# =============
# FUZZING
# =============
fuzz-build : $( GOFUZZ_BUILD_BIN )
@$( call print, " Creating fuzz harnesses for packages ' $( FUZZPKG) '. " )
scripts/fuzz.sh build " $( FUZZPKG) "
fuzz-run : $( GOFUZZ_BIN )
@$( call print, " Fuzzing packages ' $( FUZZPKG) '. " )
scripts/fuzz.sh run " $( FUZZPKG) " " $( FUZZ_TEST_RUN_TIME) " " $( FUZZ_TEST_TIMEOUT) " " $( FUZZ_NUM_PROCESSES) " " $( FUZZ_BASE_WORKDIR) "
2018-03-29 08:16:18 +03:00
# =========
# UTILITIES
# =========
2018-03-28 14:22:52 +03:00
2018-11-06 17:18:24 +03:00
fmt : goimports
@$( call print, "Fixing imports." )
goimports -w $( GOFILES_NOVENDOR)
2018-03-29 08:16:18 +03:00
@$( call print, "Formatting source." )
2018-10-25 05:06:58 +03:00
gofmt -l -w -s $( GOFILES_NOVENDOR)
2018-03-28 14:22:52 +03:00
2018-03-29 08:16:18 +03:00
lint : $( LINT_BIN )
@$( call print, "Linting source." )
2019-07-22 12:05:57 +03:00
$( LINT)
2018-03-28 14:22:52 +03:00
2018-03-29 08:16:18 +03:00
list :
@$( call print, "Listing commands." )
@$( MAKE) -qp | \
awk -F':' '/^[a-zA-Z0-9][^$$#\/\t=]*:([^=]|$$)/ {split($$1,A,/ /);for(i in A)print A[i]}' | \
grep -v Makefile | \
sort
2018-01-29 19:11:03 +03:00
2018-03-29 08:16:18 +03:00
rpc :
@$( call print, "Compiling protos." )
2021-01-15 15:44:50 +03:00
cd ./lnrpc; ./gen_protos_docker.sh
2018-03-28 14:22:52 +03:00
2019-05-23 01:24:40 +03:00
rpc-format :
@$( call print, "Formatting protos." )
cd ./lnrpc; find . -name "*.proto" | xargs clang-format --style= file -i
2020-03-11 12:17:45 +03:00
rpc-check : rpc
2019-05-23 01:24:40 +03:00
@$( call print, "Verifying protos." )
2020-06-03 12:14:33 +03:00
for rpc in $$ ( find lnrpc/ -name "*.proto" | $( XARGS) awk '/ rpc /{print $$2}' ) ; do if ! grep -q $$ rpc lnrpc/rest-annotations.yaml; then echo " RPC $$ rpc not added to lnrpc/rest-annotations.yaml " ; exit 1; fi ; done
2019-05-23 01:24:40 +03:00
if test -n " $$ (git describe --dirty | grep dirty) " ; then echo "Protos not properly formatted or not compiled with v3.4.0" ; git status; git diff; exit 1; fi
2020-10-08 10:10:59 +03:00
sample-conf-check :
@$( call print, "Making sure every flag has an example in the sample-lnd.conf file" )
for flag in $$ ( GO_FLAGS_COMPLETION = 1 go run -tags= " $( RELEASE_TAGS) " $( PKG) /cmd/lnd -- | grep -v help | cut -c3-) ; do if ! grep -q $$ flag sample-lnd.conf; then echo " Command line flag -- $$ flag not added to sample-lnd.conf " ; exit 1; fi ; done
2021-01-15 15:44:54 +03:00
mobile-rpc :
2021-04-06 13:52:27 +03:00
@$( call print, " Creating mobile RPC from protos (prefix= $( prefix) ). " )
cd ./lnrpc; COMPILE_MOBILE = 1 SUBSERVER_PREFIX = $( prefix) ./gen_protos_docker.sh
2019-01-24 16:51:05 +03:00
2019-01-24 16:51:06 +03:00
vendor :
@$( call print, "Re-creating vendor directory." )
rm -r vendor/; GO111MODULE = on go mod vendor
ios : vendor mobile -rpc
@$( call print, " Building iOS framework ( $( IOS_BUILD) ). " )
mkdir -p $( IOS_BUILD_DIR)
2020-10-21 12:22:34 +03:00
$( GOMOBILE_BIN) bind -target= ios -tags= " mobile $( DEV_TAGS) autopilotrpc " $( LDFLAGS) -v -o $( IOS_BUILD) $( MOBILE_PKG)
2019-01-24 16:51:06 +03:00
2019-01-24 16:51:06 +03:00
android : vendor mobile -rpc
@$( call print, " Building Android library ( $( ANDROID_BUILD) ). " )
mkdir -p $( ANDROID_BUILD_DIR)
2020-10-21 12:22:34 +03:00
$( GOMOBILE_BIN) bind -target= android -tags= " mobile $( DEV_TAGS) autopilotrpc " $( LDFLAGS) -v -o $( ANDROID_BUILD) $( MOBILE_PKG)
2019-01-24 16:51:06 +03:00
mobile : ios android
2018-03-28 14:22:52 +03:00
clean :
2018-03-29 08:16:18 +03:00
@$( call print, " Cleaning source. $( NC) " )
2018-09-14 00:17:33 +03:00
$( RM) ./lnd-debug ./lncli-debug
2018-11-02 11:49:32 +03:00
$( RM) ./lnd-itest ./lncli-itest
2018-09-14 00:17:33 +03:00
$( RM) -r ./vendor .vendor-new
2018-03-29 08:16:18 +03:00
2021-02-05 15:11:35 +03:00
clean-mobile :
@$( call print, "Cleaning autogenerated mobile RPC stubs." )
$( RM) -r mobile/build
$( RM) mobile/*_generated.go
2018-03-29 08:16:18 +03:00
.PHONY : all \
2018-09-09 11:48:37 +03:00
btcd \
2018-03-29 08:16:18 +03:00
default \
build \
install \
scratch \
check \
2018-10-11 11:31:04 +03:00
itest-only \
2018-03-29 08:16:18 +03:00
itest \
unit \
2021-02-17 19:47:14 +03:00
unit-debug \
2018-03-29 08:16:18 +03:00
unit-cover \
unit-race \
2018-10-11 11:31:04 +03:00
goveralls \
2018-12-01 02:20:45 +03:00
travis-race \
travis-cover \
2019-02-01 02:36:56 +03:00
travis-itest \
2018-03-29 08:16:18 +03:00
flakehunter \
flake-unit \
fmt \
lint \
list \
rpc \
2019-05-23 01:24:40 +03:00
rpc-format \
rpc-check \
2019-01-24 16:51:05 +03:00
mobile-rpc \
2019-01-24 16:51:06 +03:00
vendor \
ios \
2019-01-24 16:51:06 +03:00
android \
mobile \
2018-03-29 08:16:18 +03:00
clean