| 1 | MAINTAINERCLEANFILES = $(srcdir)/Makefile.in |
|---|
| 2 | |
|---|
| 3 | noinst_LTLIBRARIES = libifd.la |
|---|
| 4 | sbin_PROGRAMS = ifdhandler ifdproxy |
|---|
| 5 | noinst_HEADERS = atr.h ctbcs.h ifdhandler.h internal.h ria.h usb-descriptors.h |
|---|
| 6 | |
|---|
| 7 | libifd_la_SOURCES = \ |
|---|
| 8 | apdu.c atr.c checksum.c conf.c ctbcs.c device.c driver.c \ |
|---|
| 9 | init.c locks.c manager.c modules.c pcmcia.c pcmcia-block.c process.c protocol.c \ |
|---|
| 10 | reader.c serial.c usb.c usb-descriptors.c utils.c \ |
|---|
| 11 | \ |
|---|
| 12 | ifd-acr30u.c ifd-cardman.c ifd-ccid.c ifd-cm4000.c ifd-egate.c \ |
|---|
| 13 | ifd-etoken.c ifd-etoken64.c ifd-eutron.c ifd-gempc.c ifd-ikey2k.c \ |
|---|
| 14 | ifd-ikey3k.c ifd-kaan.c ifd-pertosmart1030.c ifd-pertosmart1038.c \ |
|---|
| 15 | ifd-smartboard.c ifd-smph.c ifd-starkey.c ifd-towitoko.c cardman.h \ |
|---|
| 16 | ifd-cyberjack.c ifd-rutoken.c ifd-epass3k.c \ |
|---|
| 17 | \ |
|---|
| 18 | proto-gbp.c proto-sync.c proto-t0.c proto-t1.c \ |
|---|
| 19 | proto-trans.c proto-escape.c \ |
|---|
| 20 | \ |
|---|
| 21 | sys-sunray.c sys-solaris.c sys-bsd.c sys-linux.c sys-null.c sys-osx.c \ |
|---|
| 22 | \ |
|---|
| 23 | ria.c |
|---|
| 24 | # new driver not working yet: ifd-wbeiuu.c |
|---|
| 25 | libifd_la_LIBADD = $(top_builddir)/src/ct/libopenct.la $(LTLIB_LIBS) $(OPTIONAL_LIBUSB_LIBS) |
|---|
| 26 | libifd_la_CFLAGS = $(AM_CFLAGS) \ |
|---|
| 27 | -I$(top_srcdir)/src/include \ |
|---|
| 28 | -I$(top_builddir)/src/include \ |
|---|
| 29 | $(OPTIONAL_PCSC_CFLAGS) $(OPTIONAL_LIBUSB_CFLAGS) $(LTLIB_CFLAGS) |
|---|
| 30 | |
|---|
| 31 | ifdhandler_SOURCES = ifdhandler.c |
|---|
| 32 | ifdhandler_LDADD = libifd.la |
|---|
| 33 | ifdhandler_CFLAGS = $(AM_CFLAGS) \ |
|---|
| 34 | -I$(top_srcdir)/src/include \ |
|---|
| 35 | -I$(top_builddir)/src/include |
|---|
| 36 | |
|---|
| 37 | ifdproxy_SOURCES = ifdproxy.c ria-device.c ria-server.c |
|---|
| 38 | ifdproxy_LDADD = libifd.la |
|---|
| 39 | ifdproxy_CFLAGS = $(AM_CFLAGS) \ |
|---|
| 40 | -I$(top_srcdir)/src/include \ |
|---|
| 41 | -I$(top_builddir)/src/include |
|---|