Files
libpcscxx/src/makefile.am

68 lines
1.7 KiB
Plaintext
Raw Normal View History

2009-06-17 12:24:37 +00:00
## @file
##
## $Id$
##
## 1 2 3 4 5 6 7 8
## 45678901234567890123456789012345678901234567890123456789012345678901234567890
include_HEADERS = pcsc.hxx cryptoki.hxx openssl.hxx cryptaux.hxx \
2013-11-07 10:03:58 +00:00
openssl-engine.hxx suisseid.hxx cardos.hxx
noinst_HEADERS = cardgui.hxx cardgui-model.hxx
2014-04-02 08:49:21 +00:00
if MINGW32
2014-04-28 09:27:25 +00:00
AM_LDFLAGS = -lwinscard
2014-04-02 09:03:00 +00:00
endif
if !MINGW32
2010-08-27 12:28:29 +00:00
if MAC
AM_CPPFLAGS += -I/Library/OpenSC/include
AM_LDFLAGS = -F/System/Library/Frameworks/PCSC.framework -framework PCSC
endif
2010-08-27 12:28:29 +00:00
endif
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libpcscxx.pc
pkgconfig2dir = $(datarootdir)/pkgconfig
pkgconfig2_DATA = $(pkgconfig_DATA)
EXTRA_DIST = $(pkgconfig_DATA).in ${top_srcdir}/src/*.doc
lib_LTLIBRARIES = libpcscxx.la
libpcscxx_la_SOURCES = cryptoki.cxx cryptoki.hxx pcsc.cxx version.cxx \
openssl-engine.cxx
libpcscxx_la_LDFLAGS = -version-info ${LIB_VERSION}
libpcscxx_la_LIBADD = -lssl -lcrypto
2011-10-26 10:31:22 +00:00
if MINGW32
2014-04-28 09:27:25 +00:00
libpcscxx_la_LIBADD +=
2011-10-26 10:31:22 +00:00
else
libpcscxx_la_LIBADD += -ldl
if !MAC
libpcscxx_la_LIBADD += -lpcsclite
2010-08-03 13:48:47 +00:00
endif
endif
2015-05-11 13:45:46 +00:00
bin_PROGRAMS =
if HAVE_QTNETWORK
2015-05-12 08:57:29 +00:00
bin_PROGRAMS += cert2text
cert2text_SOURCES = cert2text.cxx
endif
if HAVE_QTGUI
2015-05-12 08:57:29 +00:00
bin_PROGRAMS += cardgui
cardgui_SOURCES = cardgui.cxx cardgui.hxx password.hxx cardgui-model.hxx \
cardgui.ui password.ui
2015-03-14 14:25:16 +00:00
nodist_cardgui_SOURCES = ui_cardgui.hxx ui_password.hxx \
moc_cardgui.cxx moc_password.cxx moc_cardgui-model.cxx
BUILT_SOURCES = ${nodist_cardgui_SOURCES}
cardgui_LDADD = libpcscxx.la ${libpcscxx_la_LIBADD}
endif
noinst_PROGRAMS = versiontest
versiontest_SOURCES = versiontest.cxx
CLEANFILES = ${BUILT_SOURCES}
DISTCLEANFILES = $(pkgconfig_DATA)
2009-06-17 12:24:37 +00:00
MAINTAINERCLEANFILES = makefile.in