diff options
author | 2016-10-31 14:53:40 +0200 | |
---|---|---|
committer | 2016-10-31 14:53:40 +0200 | |
commit | ce0841ecfaca463c93dd5551bc5f45cd9365a938 (patch) | |
tree | 7dc7bf6942600a96393c83d91fecd0f6cda389e5 /src/Makefile.am | |
parent | fbb41f2290c0eb940bbe8f77fc2afff3974fa264 (diff) | |
download | librin-ce0841ecfaca463c93dd5551bc5f45cd9365a938.tar.gz librin-ce0841ecfaca463c93dd5551bc5f45cd9365a938.tar.bz2 librin-ce0841ecfaca463c93dd5551bc5f45cd9365a938.zip |
gpio: add initial implementation.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index de86e4c..1717659 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -14,7 +14,7 @@ # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA -SUBDIRS = float diagnostic +SUBDIRS = float diagnostic gpio AM_CFLAGS = \ -I$(top_srcdir)/include/ \ @@ -33,11 +33,13 @@ librin_la_SOURCES = dummy.c librin_la_LIBADD = \ float/librin_float.la \ - diagnostic/librin_diagnostic.la + diagnostic/librin_diagnostic.la \ + gpio/librin_gpio.la librin_includedir = $(includedir)/rin librin_include_HEADERS = \ $(top_srcdir)/include/rin/float.h \ $(top_srcdir)/include/rin/float_types.h \ $(top_srcdir)/include/rin/definitions.h \ - $(top_srcdir)/include/rin/diagnostic.h + $(top_srcdir)/include/rin/diagnostic.h \ + $(top_srcdir)/include/rin/gpio.h |