source: trunk/src/pcsc/Makefile.am @ 1028

Revision 1028, 936 bytes checked in by alonbl, 4 years ago (diff)

New build system

Sync with other projects.

merge -r 1014:1027  https://www.opensc-project.org/svn/openct/branches/alonbl/build

_M .
_M macos
M macos/Makefile.am
M configure.ac
_M doc
D doc/changelog.sh
M doc/doxygen.conf.in
D doc/export-wiki.xsl
M doc/Makefile.am
A doc/opensc-logo.gif
D doc/generate-api.sh
D doc/export-wiki.sh
AM doc/nonpersistent
A doc/nonpersistent/export-wiki.xsl
A doc/nonpersistent/Makefile.am
A doc/nonpersistent/export-wiki.sh
A doc/nonpersistent/svn2cl.xsl
D doc/svn2cl.xsl
A doc/doxygen-footer.html
_M src
_M src/ctapi
M src/ctapi/Makefile.am
_M src/tools
M src/tools/Makefile.am
_M src/ifd
M src/ifd/ifd-cm4000.c
M src/ifd/atr.c
M src/ifd/ifd-pertosmart1030.c
M src/ifd/ifd-pertosmart1038.c
M src/ifd/ifd-rutoken.c
M src/ifd/sys-linux.c
M src/ifd/Makefile.am
_M src/include
_M src/include/openct
M src/include/openct/Makefile.am
M src/include/Makefile.am
_M src/ct
M src/ct/Makefile.am
_M src/pcsc
M src/pcsc/Makefile.am
M src/Makefile.am
M Makefile.am
A svnignore
_M etc
M etc/Makefile.am
_M solaris
_M aclocal
D aclocal/pkg.m4
M aclocal/ac_create_stdint_h.m4
D aclocal/ac_compile_check_sizeof.m4
M aclocal/Makefile.am

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
2
3if ENABLE_PCSC
4lib_LTLIBRARIES = openct-ifd.la
5endif
6
7openct_ifd_la_SOURCES = pcsc.c
8openct_ifd_la_LDFLAGS = -module -avoid-version -no-undefined
9openct_ifd_la_LIBADD = $(PCSC_LIBS) $(top_builddir)/src/ctapi/libopenctapi.la
10openct_ifd_la_CFLAGS = $(AM_CFLAGS) \
11        -I$(top_srcdir)/src/include \
12        -I$(top_builddir)/src/include \
13        -I$(top_srcdir)/src/ctapi \
14        $(PCSC_CFLAGS)
15
16# Don't use ENABLE_BUNDLES for this case, pcsc-lite loads
17# USB drivers from MacOS X like bundles for all platforms
18install-exec-local: install-libLTLIBRARIES
19if ENABLE_PCSC
20if ENABLE_BUNDLES
21        $(MKDIR_P) "$(DESTDIR)$(bundledir)"
22        "$(top_srcdir)/macos/libtool-bundle" -e "$(top_srcdir)/etc/Info.plist" \
23                "$(DESTDIR)$(libdir)/openct-ifd.so" "$(DESTDIR)$(bundledir)"
24endif
25endif
26
27uninstall-local: uninstall-libLTLIBRARIES
28if ENABLE_PCSC
29if ENABLE_BUNDLES
30        rm -rf "$(DESTDIR)$(bundledir)/openct-ifd.bundle/"
31endif
32endif
Note: See TracBrowser for help on using the repository browser.