.PHONY: all build check package source release clean

all: build

build:
	./build.sh

check:
	./scripts/check.sh

package:
	./package.sh

source:
	./scripts/source-archive.sh

release: clean check package source

clean:
	rm -rf build .build
