mirror of
https://github.com/ANL-CEEESA/RELOG.git
synced 2025-12-06 07:48:50 -06:00
[Diff since v0.5.1](https://github.com/ANL-CEEESA/RELOG/compare/v0.5.1...v0.5.2)
23 lines
515 B
Makefile
23 lines
515 B
Makefile
VERSION := 0.5
|
|
|
|
clean:
|
|
rm -rfv build Manifest.toml test/Manifest.toml deps/formatter/build deps/formatter/Manifest.toml
|
|
|
|
docs:
|
|
cd docs; julia --project=. make.jl; cd ..
|
|
rsync -avP --delete-after docs/build/ ../docs/$(VERSION)/
|
|
|
|
docker-build:
|
|
docker build --tag relog-web:$(VERSION) .
|
|
|
|
format:
|
|
cd deps/formatter; ../../juliaw format.jl
|
|
|
|
test: test/Manifest.toml
|
|
./juliaw test/runtests.jl
|
|
|
|
test/Manifest.toml: test/Project.toml
|
|
julia --project=test -e "using Pkg; Pkg.instantiate()"
|
|
|
|
.PHONY: docs test format
|