forked from coreos/rpm-ostree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.bindings
26 lines (23 loc) · 1.08 KB
/
Makefile.bindings
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
# This is duplicated with LIBRPMOSTREE_RUST_SRCS because this
# Makefile needs to be independent
binding_rust_sources = $(shell find rust/src/ -name '*.rs') Cargo.toml Cargo.lock
all: rpmostree-cxxrs.h rpmostree-cxxrs.cxx rust/cxx.h
.PHONY: all
rust/cxx.h: Makefile.bindings
./target/cxxbridge/bin/cxxbridge --header | clang-format --assume-filename=$@ >[email protected] && mv [email protected] $@
rpmostree-cxxrs.h: $(binding_rust_sources) rust/cxx.h ./target/cxxbridge/bin/cxxbridge
$(AM_V_GEN) if ./target/cxxbridge/bin/cxxbridge rust/src/lib.rs --header | clang-format --assume-filename=$@ > [email protected]; then \
if test -f $@ && cmp [email protected] $@ 2>/dev/null; then rm -f [email protected]; else \
mv [email protected] $@; \
fi; \
else \
echo cxxbridge failed; exit 1; \
fi
rpmostree-cxxrs.cxx: $(binding_rust_sources) rpmostree-cxxrs.h
$(AM_V_GEN) if ./target/cxxbridge/bin/cxxbridge --include rpmostree-cxxrs.h rust/src/lib.rs | clang-format --assume-filename=$@ > [email protected]; then \
if test -f $@ && cmp [email protected] $@ 2>/dev/null; then rm -f [email protected]; else \
mv [email protected] $@; \
fi; \
else \
echo cxxbridge failed; exit 1; \
fi