mirror of
https://github.com/prymitive/karma
synced 2026-05-05 03:16:51 +00:00
25 lines
445 B
Makefile
25 lines
445 B
Makefile
include make/vars.mk
|
|
include make/go.mk
|
|
include make/cc.mk
|
|
include make/docker.mk
|
|
include make/lint-versions.mk
|
|
|
|
.PHONY: lint
|
|
lint: lint-versions
|
|
make -f go.mk test
|
|
make -C ui lint-js
|
|
make -C ui lint-docs
|
|
|
|
.PHONY: test
|
|
test: lint
|
|
make -f go.mk test-go
|
|
make -C ui test-js
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -fr cmd/karma/bindata_assetfs.go $(NAME) $(NAME)-* ui/build ui/node_modules coverage.txt
|
|
|
|
.PHONY: show-version
|
|
show-version:
|
|
@echo $(VERSION)
|