
- New nfc_device_get_information_about() - Moved nfc-utils function str_nfc_baud_rate() - New str_nfc_modulation_type() - Add new device_get_information_about callback to nfc_driver struct - Export new symbols - Changed internal pn53x firmware text handling: we now store firmware text for further operations - print_nfc_target() now uses str_nfc_* functions - nfc-probe util now have a verbose which display information on detected devices (Fix verbose set but not used warning ;-) )
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
SUBDIRS = chips buses drivers .
|
|
|
|
# set the include path found by configure
|
|
INCLUDES = $(all_includes) $(LIBNFC_CFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
drivers.h \
|
|
iso7816.h \
|
|
log.h \
|
|
mirror-subr.h \
|
|
nfc-internal.h
|
|
lib_LTLIBRARIES = libnfc.la
|
|
libnfc_la_SOURCES = \
|
|
iso14443-subr.c \
|
|
mirror-subr.c \
|
|
nfc.c \
|
|
nfc-device.c \
|
|
nfc-emulation.c \
|
|
nfc-internal.c
|
|
|
|
libnfc_la_LDFLAGS = -no-undefined -version-info 3:0:0 -export-symbols-regex '^nfc_|^iso14443a_|^str_nfc_|pn53x_transceive|pn53x_SAMConfiguration'
|
|
libnfc_la_CFLAGS = @DRIVERS_CFLAGS@
|
|
libnfc_la_LIBADD = \
|
|
$(top_builddir)/libnfc/chips/libnfcchips.la \
|
|
$(top_builddir)/libnfc/buses/libnfcbuses.la \
|
|
$(top_builddir)/libnfc/drivers/libnfcdrivers.la
|
|
|
|
if PCSC_ENABLED
|
|
libnfc_la_CFLAGS += @libpcsclite_CFLAGS@ -DHAVE_PCSC
|
|
libnfc_la_LIBADD += @libpcsclite_LIBS@
|
|
endif
|
|
|
|
if LIBUSB_ENABLED
|
|
libnfc_la_CFLAGS += @libusb_CFLAGS@ -DHAVE_LIBUSB
|
|
libnfc_la_LIBADD += @libusb_LIBS@
|
|
endif
|
|
|
|
if WITH_DEBUG
|
|
libnfc_la_SOURCES += log-printf.c
|
|
endif
|
|
|
|
EXTRA_DIST = \
|
|
CMakeLists.txt \
|
|
log-printf.c
|
|
|