treewide: rearrange source directories
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Thu, 7 Mar 2019 10:15:23 +0000 (11:15 +0100)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Thu, 7 Mar 2019 12:49:00 +0000 (13:49 +0100)
commit8159d9b5405c362d5503ddc22e974858eef04645
treef11f620cfd2147a2bceb45e92087db72139c1c8c
parentcd777e54a84f45bd308c442edab5105124b11b73
treewide: rearrange source directories

The src directory containing lib and tools is not necessary and will
actually cause problems if we tried to add a new component to src/
which would depend on libraries from the bindings directory because it
(bindings) already depends on src/lib.

Simplify the directory structure. Move lib and tools to the root source
directory and update all relevant files. That way we can specify the
exact build order of components from the top source Makefile.am.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
38 files changed:
Makefile.am
bindings/cxx/Makefile.am
bindings/python/Makefile.am
configure.ac
lib/Makefile.am [new file with mode: 0644]
lib/core.c [new file with mode: 0644]
lib/ctxless.c [new file with mode: 0644]
lib/helpers.c [new file with mode: 0644]
lib/iter.c [new file with mode: 0644]
lib/misc.c [new file with mode: 0644]
man/Makefile.am
src/Makefile.am [deleted file]
src/lib/Makefile.am [deleted file]
src/lib/core.c [deleted file]
src/lib/ctxless.c [deleted file]
src/lib/helpers.c [deleted file]
src/lib/iter.c [deleted file]
src/lib/misc.c [deleted file]
src/tools/Makefile.am [deleted file]
src/tools/gpiodetect.c [deleted file]
src/tools/gpiofind.c [deleted file]
src/tools/gpioget.c [deleted file]
src/tools/gpioinfo.c [deleted file]
src/tools/gpiomon.c [deleted file]
src/tools/gpioset.c [deleted file]
src/tools/tools-common.c [deleted file]
src/tools/tools-common.h [deleted file]
tests/Makefile.am
tests/gpiod-test.c
tools/Makefile.am [new file with mode: 0644]
tools/gpiodetect.c [new file with mode: 0644]
tools/gpiofind.c [new file with mode: 0644]
tools/gpioget.c [new file with mode: 0644]
tools/gpioinfo.c [new file with mode: 0644]
tools/gpiomon.c [new file with mode: 0644]
tools/gpioset.c [new file with mode: 0644]
tools/tools-common.c [new file with mode: 0644]
tools/tools-common.h [new file with mode: 0644]