File: Makefile

package info (click to toggle)
rust-glib 0.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 796 kB
  • sloc: makefile: 22
file content (28 lines) | stat: -rw-r--r-- 754 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
GIR = gir/target/bin/gir
GIR_SRC = gir/Cargo.toml gir/Cargo.lock gir/build.rs $(shell find gir/src -name '*.rs')
GIR_FILES = gir-files/Glib-2.0.gir gir-files/GObject-2.0.gir

# Run `gir` generating the bindings
gir : src/auto/mod.rs src/gobject/auto/mod.rs

not_bound: $(GIR) $(GIR_FILES)
	$(GIR) -m not_bound -c Gir.toml

regen_check: $(GIR) $(GIR_FILES)
	rm src/auto/*
	$(GIR) -c Gir.toml
	git diff -R --exit-code

src/auto/mod.rs : Gir.toml $(GIR) $(GIR_FILES)
	$(GIR) -c Gir.toml

src/gobject/auto/mod.rs : Gir_GObject.toml $(GIR) $(GIR_FILES)
	$(GIR) -c Gir_GObject.toml

$(GIR) : $(GIR_SRC)
	rm -f gir/target/bin/gir
	cargo install --path gir --root gir/target
	rm -f gir/target/.crates.toml

$(GIR_SRC) $(GIR_FILES) :
	git submodule update --init