Changeset 1028 for trunk/src/pcsc
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 Makefile 2 Makefile.in 3 core 4 archive 5 acinclude.m4 6 aclocal.m4 7 autom4te.cache 8 compile 9 confdefs.h 10 config.* 11 configure 12 conftest 13 conftest.c 14 depcomp 15 install-sh 16 libtool 17 libtool.m4 18 ltmain.sh 19 missing 20 mkinstalldirs 21 so_locations 22 stamp-h* 23 1 24 .deps 2 25 .libs … … 19 42 *.rej 20 43 *.u 44 *.rc 45 *.pc 21 46 *~ 22 Makefile 23 Makefile.in 24 core 25 gmon.out 26 archive 27 acinclude.m4 28 aclocal.m4 29 autom4te.cache 30 compile 31 confdefs.h 32 config.cache 33 config.guess 34 config.h 35 config.h.in 36 config.log 37 config.status 38 config.sub 39 configure 40 conftest 41 conftest.c 42 depcomp 43 install-sh 44 libtool 45 libtool.m4 46 ltmain.sh 47 missing 48 mkinstalldirs 49 so_locations 50 stamp-h* 47 *.gz 48 *.bz2 49 *.[0-9] 50 *.html 51 *.gif 52 *.css 53 *.out 54 *.loT 55 56 ChangeLog 57 doxygen.conf 58 reader.conf 59 openct_serial 60 openct.hald 61 openct_usb 62 openct_pcmcia 63 init-script 64 openct.conf 65 types.h 66 ifdhandler 67 ifdproxy 68 openct-tool 69 openct-control
-
- Property svn:ignore
-
trunk/src
- Property svn:ignore
-
old new 1 Makefile 2 Makefile.in 3 core 4 archive 5 acinclude.m4 6 aclocal.m4 7 autom4te.cache 8 compile 9 confdefs.h 10 config.* 11 configure 12 conftest 13 conftest.c 14 depcomp 15 install-sh 16 libtool 17 libtool.m4 18 ltmain.sh 19 missing 20 mkinstalldirs 21 so_locations 22 stamp-h* 23 1 24 .deps 2 25 .libs … … 19 42 *.rej 20 43 *.u 44 *.rc 45 *.pc 21 46 *~ 22 Makefile 23 Makefile.in 24 core 25 gmon.out 47 *.gz 48 *.bz2 49 *.[0-9] 50 *.html 51 *.gif 52 *.css 53 *.out 54 *.loT 55 56 ChangeLog 57 doxygen.conf 58 reader.conf 59 openct_serial 60 openct.hald 61 openct_usb 62 openct_pcmcia 63 init-script 64 openct.conf 65 types.h 66 ifdhandler 67 ifdproxy 68 openct-tool 69 openct-control
-
- Property svn:ignore
-
trunk/src/pcsc
- Property svn:ignore
-
old new 1 Makefile 2 Makefile.in 3 core 4 archive 5 acinclude.m4 6 aclocal.m4 7 autom4te.cache 8 compile 9 confdefs.h 10 config.* 11 configure 12 conftest 13 conftest.c 14 depcomp 15 install-sh 16 libtool 17 libtool.m4 18 ltmain.sh 19 missing 20 mkinstalldirs 21 so_locations 22 stamp-h* 23 1 24 .deps 2 25 .libs … … 19 42 *.rej 20 43 *.u 44 *.rc 45 *.pc 21 46 *~ 22 Makefile 23 Makefile.in 24 core 25 gmon.out 47 *.gz 48 *.bz2 49 *.[0-9] 50 *.html 51 *.gif 52 *.css 53 *.out 54 *.loT 55 56 ChangeLog 57 doxygen.conf 58 reader.conf 59 openct_serial 60 openct.hald 61 openct_usb 62 openct_pcmcia 63 init-script 64 openct.conf 65 types.h 66 ifdhandler 67 ifdproxy 68 openct-tool 69 openct-control
-
- Property svn:ignore
-
trunk/src/pcsc/Makefile.am
r937 r1028 1 # Process this file with automake to createMakefile.in1 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in 2 2 3 bundledir = $(BUNDLEDIR) 4 5 MAINTAINERCLEANFILES = Makefile.in 6 7 INCLUDES = -I$(top_srcdir)/src/ctapi $(CPPFLAGS) $(PCSC_CFLAGS) 8 9 if HAVE_PCSC 3 if ENABLE_PCSC 10 4 lib_LTLIBRARIES = openct-ifd.la 11 5 endif 12 6 13 7 openct_ifd_la_SOURCES = pcsc.c 14 openct_ifd_la_LDFLAGS = -module -avoid-version 15 openct_ifd_la_LIBADD = ../ctapi/libopenctapi.la 8 openct_ifd_la_LDFLAGS = -module -avoid-version -no-undefined 9 openct_ifd_la_LIBADD = $(PCSC_LIBS) $(top_builddir)/src/ctapi/libopenctapi.la 10 openct_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) 16 15 17 # Don't use HAVE_BUNDLES for this case, pcsc-lite loads16 # Don't use ENABLE_BUNDLES for this case, pcsc-lite loads 18 17 # USB drivers from MacOS X like bundles for all platforms 19 18 install-exec-local: install-libLTLIBRARIES 20 if HAVE_PCSC21 if HAVE_BUNDLES22 $( mkinstalldirs) $(DESTDIR)$(bundledir)23 ${top_srcdir}/macos/libtool-bundle -e $(top_srcdir)/etc/Info.plist\24 $(DESTDIR)$(libdir)/openct-ifd.so $(DESTDIR)$(bundledir)/19 if ENABLE_PCSC 20 if 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)" 25 24 endif 26 25 endif 27 26 28 27 uninstall-local: uninstall-libLTLIBRARIES 29 if HAVE_PCSC30 if HAVE_BUNDLES31 rm -rf $(DESTDIR)$(bundledir)/openct-ifd.bundle/28 if ENABLE_PCSC 29 if ENABLE_BUNDLES 30 rm -rf "$(DESTDIR)$(bundledir)/openct-ifd.bundle/" 32 31 endif 33 32 endif
Note: See TracChangeset
for help on using the changeset viewer.
