From: Bartosz Golaszewski Date: Thu, 15 Jun 2023 08:50:26 +0000 (+0200) Subject: bindings: rust: package new examples in the distro tarball X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=06c8ad9ef9482892bf308a6919299285c5642952;p=qemu-gpiodev%2Flibgpiod.git bindings: rust: package new examples in the distro tarball Add new example files to EXTRA_DIST in the Makefile so that they end up being shipped with the rest of the code. Signed-off-by: Bartosz Golaszewski --- diff --git a/bindings/rust/libgpiod/examples/Makefile.am b/bindings/rust/libgpiod/examples/Makefile.am index c1d2c17..b3338bd 100644 --- a/bindings/rust/libgpiod/examples/Makefile.am +++ b/bindings/rust/libgpiod/examples/Makefile.am @@ -3,6 +3,7 @@ # SPDX-FileCopyrightText: 2022 Bartosz Golaszewski EXTRA_DIST = \ + get_line_value.rs \ gpiodetect.rs \ gpio_events.rs \ gpiofind.rs \ @@ -12,4 +13,6 @@ EXTRA_DIST = \ gpionotify.rs \ gpioset.rs \ gpio_threaded_info_events.rs \ - gpiowatch.rs + gpiowatch.rs \ + toggle_line_value.rs \ + watch_line_value.rs