mirror of
https://github.com/cubefs/cubefs.git
synced 2026-08-02 02:00:56 +00:00
20 lines
171 B
Makefile
20 lines
171 B
Makefile
# ChubaoFS Makefile
|
|
#
|
|
|
|
default: build
|
|
|
|
.PHONY: build
|
|
|
|
build:
|
|
@build/build.sh
|
|
|
|
clean:
|
|
@rm -rf build/bin/*
|
|
|
|
ci-test:
|
|
@{ \
|
|
echo "ci test" \
|
|
&& ( go test ./... ) \
|
|
}
|
|
|