diff options
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 |