mirror of
https://github.com/ANL-CEEESA/MIPLearn.jl.git
synced 2025-12-06 08:28:52 -06:00
14 lines
366 B
Makefile
14 lines
366 B
Makefile
JULIA := julia --color=yes
|
|
JULIA_SYSIMAGE_ARGS := $(JULIA_ARGS) --sysimage build/sysimage.so
|
|
|
|
all: test
|
|
|
|
build/sysimage.so: Manifest.toml Project.toml
|
|
mkdir -p build
|
|
$(JULIA) --project=test test/sysimage.jl
|
|
|
|
test: build/sysimage.so
|
|
$(JULIA) --sysimage build/sysimage.so --project=test test/runtests.jl
|
|
|
|
.PHONY: test test-python test-julia test-watch docs install
|