build: Fix build with latest ELL tree

Latest ELL tree has introduced useful.h and main-private.h which are
required to build:

ell/cert-crypto.c:35:10: fatal error: useful.h: No such file or
directory
   35 | #include "useful.h"
         |          ^~~~~~~~~~
...
This commit is contained in:
Luiz Augusto von Dentz 2021-03-16 13:56:49 -07:00
parent acccac28db
commit 571e41a19a

View File

@ -135,7 +135,9 @@ ell_headers = ell/util.h \
ell/asn1-private.h \
ell/cert-private.h \
ell/pem-private.h \
ell/uuid.h
ell/uuid.h \
ell/useful.h \
ell/main-private.h
ell_sources = ell/private.h ell/missing.h \
ell/util.c \