1
0
mirror of https://git.code.sf.net/p/linux-ima/ima-evm-utils synced 2025-07-04 06:25:15 +02:00

Rename library, header file and export it.

Signed-off-by: Dmitry Kasatkin <d.kasatkin@samsung.com>
This commit is contained in:
Dmitry Kasatkin
2014-02-14 18:52:12 +02:00
parent ca6b42ab17
commit 12af148131
6 changed files with 16 additions and 12 deletions

View File

@ -1,18 +1,20 @@
lib_LTLIBRARIES = libevm.la
lib_LTLIBRARIES = libimaevm.la
libevm_la_SOURCES = libevm.c
libevm_la_CPPFLAGS = $(OPENSSL_CFLAGS)
libimaevm_la_SOURCES = libimaevm.c
libimaevm_la_CPPFLAGS = $(OPENSSL_CFLAGS)
# current[:revision[:age]]
# result: [current-age].age.revision
libevm_la_LDFLAGS = -version-info 0:0:0
libevm_la_LIBADD = $(OPENSSL_LIBS)
libimaevm_la_LDFLAGS = -version-info 0:0:0
libimaevm_la_LIBADD = $(OPENSSL_LIBS)
include_HEADERS = imaevm.h
bin_PROGRAMS = evmctl
evmctl_SOURCES = evmctl.c
evmctl_CPPFLAGS = $(OPENSSL_CFLAGS)
evmctl_LDFLAGS = $(LDFLAGS_READLINE)
evmctl_LDADD = $(OPENSSL_LIBS) -lkeyutils libevm.la
evmctl_LDADD = $(OPENSSL_LIBS) -lkeyutils libimaevm.la
INCLUDES = -I$(top_srcdir) -include config.h