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.
24 lines
697 B
24 lines
697 B
# UnitCommitment.jl: Optimization Package for Security-Constrained Unit Commitment
|
|
# Copyright (C) 2020, UChicago Argonne, LLC. All rights reserved.
|
|
# Released under the modified BSD license. See COPYING.md for more details.
|
|
|
|
VERSION := 0.2
|
|
|
|
clean:
|
|
rm -rfv build Manifest.toml test/Manifest.toml deps/formatter/build deps/formatter/Manifest.toml
|
|
|
|
docs:
|
|
cd docs; make clean; make dirhtml
|
|
rsync -avP --delete-after docs/_build/dirhtml/ ../docs/$(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 install-deps
|