|
@@ -55,13 +55,16 @@ endif
|
|
|
include makefile_include.mk
|
|
|
|
|
|
ifneq ($(findstring -DLTM_DESC,$(LTC_CFLAGS)),)
|
|
|
-LTC_MPI_PROVIDERS += -ltommath
|
|
|
+LTC_MPI_PROVIDERS_CFLAGS += -DLTM_DESC
|
|
|
+LTC_MPI_PROVIDERS_LIBS += -ltommath
|
|
|
endif
|
|
|
ifneq ($(findstring -DTFM_DESC,$(LTC_CFLAGS)),)
|
|
|
-LTC_MPI_PROVIDERS += -ltfm
|
|
|
+LTC_MPI_PROVIDERS_CFLAGS += -DTFM_DESC
|
|
|
+LTC_MPI_PROVIDERS_LIBS += -ltfm
|
|
|
endif
|
|
|
ifneq ($(findstring -DGMP_DESC,$(LTC_CFLAGS)),)
|
|
|
-LTC_MPI_PROVIDERS += -lgmp
|
|
|
+LTC_MPI_PROVIDERS_CFLAGS += -DGMP_DESC
|
|
|
+LTC_MPI_PROVIDERS_LIBS += -lgmp
|
|
|
endif
|
|
|
|
|
|
#ciphers come in two flavours... enc+dec and enc
|
|
@@ -90,7 +93,8 @@ $(foreach demo, $(strip $(DEMOS)), $(eval $(call DEMO_template,$(demo))))
|
|
|
install: $(call print-help,install,Installs the library + headers + pkg-config file) .common_install
|
|
|
sed -e 's,^prefix=.*,prefix=$(PREFIX),' -e 's,^Version:.*,Version: $(VERSION_PC),' -e 's,@CMAKE_INSTALL_LIBDIR@,lib,' \
|
|
|
-e 's,@CMAKE_INSTALL_INCLUDEDIR@/@PROJECT_NAME@,include/tomcrypt,' \
|
|
|
- -e 's,@MPI_PROVIDERS@,$(LTC_MPI_PROVIDERS),' libtomcrypt.pc.in > libtomcrypt.pc
|
|
|
+ -e 's,@MPI_PROVIDERS_LIBS@,$(LTC_MPI_PROVIDERS_LIBS),' \
|
|
|
+ -e 's,@MPI_PROVIDERS_CFLAGS@,$(LTC_MPI_PROVIDERS_CFLAGS),' libtomcrypt.pc.in > libtomcrypt.pc
|
|
|
install -p -d $(DESTDIR)$(LIBPATH)/pkgconfig
|
|
|
install -p -m 644 libtomcrypt.pc $(DESTDIR)$(LIBPATH)/pkgconfig/
|
|
|
|