X-Git-Url: https://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=lib%2FMakefile.am;h=69a66c3735acc8734eeb8938f846c98865bd6a47;hp=0088e0bf5d14d0a52887fdd2a4aea9a5c2b9981b;hb=HEAD;hpb=8b214b9d1c51f49d977e93b66378ed4f73790c8b diff --git a/lib/Makefile.am b/lib/Makefile.am index 0088e0b..69a66c3 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -35,6 +35,7 @@ lib_libpbcore_la_CFLAGS = \ lib_libpbcore_la_SOURCES = \ lib/ccan/endian/endian.h \ + lib/crypt/crypt.h \ lib/file/file.h \ lib/file/file.c \ lib/fold/fold.h \ @@ -65,7 +66,11 @@ lib_libpbcore_la_SOURCES = \ lib/util/util.h \ lib/flash/config.h \ lib/flash/flash.h \ - lib/security/security.h + lib/security/security.h \ + lib/efi/efivar.h \ + lib/efi/efivar.c \ + lib/param_list/param_list.c \ + lib/param_list/param_list.h if ENABLE_MTD lib_libpbcore_la_SOURCES += \ @@ -89,3 +94,11 @@ lib_libpbcore_la_SOURCES += \ lib/security/none.c endif endif + +if ENABLE_CRYPT +lib_libpbcore_la_SOURCES += \ + lib/crypt/crypt.c + +lib_libpbcore_la_LDFLAGS += \ + $(CRYPT_LIBS) +endif