From 1db3aa60920a0d2cca386ab5a938dc6033b397e7 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Fri, 30 Oct 2020 15:38:56 -0500 Subject: [PATCH] build: Add DHCP6 & pre-requisite files --- Makefile.am | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 7ed8baa9..d49833b7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -59,7 +59,9 @@ ell_headers = ell/util.h \ ell/ecc.h \ ell/ecdh.h \ ell/time.h \ - ell/path.h + ell/path.h \ + ell/icmp6.h \ + ell/dhcp6.h ell_sources = ell/private.h \ ell/missing.h \ @@ -130,7 +132,13 @@ ell_sources = ell/private.h \ ell/ecdh.c \ ell/time.c \ ell/time-private.h \ - ell/path.c + ell/path.c \ + ell/dhcp6.c \ + ell/dhcp6-private.h \ + ell/icmp6.c \ + ell/icmp6-private.h \ + ell/dhcp6-lease.c \ + ell/dhcp6-transport.c ell_libell_internal_la_SOURCES = $(ell_headers) $(ell_sources) endif