You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RELOG/Makefile

26 lines
514 B

JULIA := julia --project=.
SRC_FILES := $(wildcard src/*.jl test/*.jl)
VERSION := dev
all: docs test
build/sysimage.so: src/sysimage.jl Project.toml Manifest.toml
@$(JULIA) src/sysimage.jl test/runtests.jl
clean:
rm -rf build/*
docs:
mkdocs build -d ../docs/$(VERSION)/
format:
julia -e 'using JuliaFormatter; format(["src", "test"], verbose=true);'
test:
@$(JULIA) --sysimage build/sysimage.so test/runtests.jl
test-watch:
bash -c "while true; do make test --quiet; sleep 1; done"
.PHONY: docs test