10baef235f
- New API function append_iso14443a_crc(); - Add a PRINT_HEX macro for driver debugging (replaces print_hex function from bitutils.c); - Move bit-mirroring related functions to libnfc/mirror-subr.[hc]; - Move iso14443 related functions to libnfc/iso14443-subr.c; - Move libnfc/bitutils.c hex-dumping code to examples/nfc-utils.c; - Replace calls to swap_endian32() and swap_endian64() functions with calls to bswap32() and bswap64 provided by endian.h. And while I am here: - Fix the DBG macro so that it does not throw warning at compile time.
26 lines
778 B
Makefile
26 lines
778 B
Makefile
SUBDIRS = chips buses drivers .
|
|
|
|
# set the include path found by configure
|
|
INCLUDES = $(all_includes) $(LIBNFC_CFLAGS)
|
|
|
|
noinst_HEADERS = chips.h buses.h drivers.h mirror-subr.h
|
|
lib_LTLIBRARIES = libnfc.la
|
|
libnfc_la_SOURCES = nfc.c iso14443-subr.c mirror-subr.c
|
|
libnfc_la_LDFLAGS = -no-undefined -version-info=0:0:0
|
|
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
|
|
|
|
EXTRA_DIST = CMakeLists.txt
|