From 69f8cb53a6f9a584a7dfe55ee383c24ab649cb8c Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Thu, 27 Dec 2018 11:48:11 -0600 Subject: [PATCH] build: Add string utilities from ell to build --- Makefile.am | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 7c8718e9..6aa8f8fe 100644 --- a/Makefile.am +++ b/Makefile.am @@ -31,7 +31,8 @@ ell_headers = ell/util.h \ ell/random.h \ ell/uuid.h \ ell/file.h \ - ell/uintset.h + ell/uintset.h \ + ell/string.h ell_sources = ell/private.h \ ell/missing.h \ @@ -50,7 +51,8 @@ ell_sources = ell/private.h \ ell/random.c \ ell/uuid.c \ ell/file.c \ - ell/uintset.c + ell/uintset.c \ + ell/string.c ell_libell_internal_la_SOURCES = $(ell_headers) $(ell_sources) endif