2020-07-24 13:19:08 +03:00
GIR_REPO := https://github.com/gtk-rs/gir.git
2022-11-22 17:53:59 +03:00
GIR_VERSION := 0eeebbdf9d4d5a0b0148c7fa055bf961e16e54a0
2021-04-09 18:18:36 +03:00
OSTREE_REPO := ../ostree
2022-03-04 13:35:01 +03:00
OSTREE_VERSION := patch-v2022.2
2021-03-26 22:44:02 +03:00
RUSTDOC_STRIPPER_VERSION := 0.1.17
2019-12-15 16:05:17 +03:00
2019-05-24 22:51:34 +03:00
all : gir
2018-10-09 23:24:06 +03:00
2020-03-31 23:59:04 +03:00
.PHONY : gir gir -report update -gir -files remove -gir -files merge -lgpl -docs ci -build -stages
2018-10-09 23:24:06 +03:00
2018-10-18 20:03:03 +03:00
# -- gir generation --
2018-10-20 12:59:54 +03:00
target/tools/bin/gir :
2020-07-23 18:31:13 +03:00
cargo install --root target/tools --git $( GIR_REPO) --rev $( GIR_VERSION) -- gir
2018-10-09 23:24:06 +03:00
2019-05-24 22:51:34 +03:00
gir : target /tools /bin /gir
target/tools/bin/gir -c conf/ostree-sys.toml
target/tools/bin/gir -c conf/ostree.toml
2018-10-09 23:24:06 +03:00
2020-08-26 11:09:25 +03:00
gir-report : target /tools /bin /gir
2019-06-13 21:01:30 +03:00
target/tools/bin/gir -c conf/ostree.toml -m not_bound
2018-10-18 20:03:03 +03:00
2018-10-18 22:58:56 +03:00
# -- LGPL docs generation --
2018-10-20 12:59:54 +03:00
target/tools/bin/rustdoc-stripper :
2019-12-15 16:05:17 +03:00
cargo install --root target/tools --version $( RUSTDOC_STRIPPER_VERSION) -- rustdoc-stripper
2018-10-18 22:58:56 +03:00
2018-10-20 12:59:54 +03:00
merge-lgpl-docs : target /tools /bin /gir target /tools /bin /rustdoc -stripper
2019-05-16 22:41:38 +03:00
target/tools/bin/gir -c conf/ostree.toml -m doc
2018-10-20 12:59:54 +03:00
target/tools/bin/rustdoc-stripper -g -o target/vendor.md
2018-10-18 22:58:56 +03:00
2018-10-18 20:03:03 +03:00
# -- gir file management --
2018-10-09 23:24:06 +03:00
update-gir-files : \
remove-gir-files \
gir-files \
gir-files/GLib-2.0.gir \
gir-files/Gio-2.0.gir \
2020-07-24 15:57:04 +03:00
gir-files/GObject-2.0.gir \
gir-files/OSTree-1.0.gir
2018-10-09 23:24:06 +03:00
remove-gir-files :
2020-07-24 16:00:33 +03:00
rm -f gir-files/*.gir
2018-10-09 23:24:06 +03:00
gir-files :
mkdir -p gir-files
%.gir :
curl -o $@ -L https://github.com/gtk-rs/gir-files/raw/master/${ @F }
gir-files/OSTree-1.0.gir :
2022-06-03 16:57:12 +03:00
ln -sfr ../OSTree-1.0.gir $@