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.
50 lines
1.6 KiB
Makefile
50 lines
1.6 KiB
Makefile
bin_PROGRAMS = nfc-anticol nfc-list nfc-mfclassic nfc-mfultralight nfc-relay nfc-emulate nfcip-target nfcip-initiator nfc-poll
|
|
|
|
# set the include path found by configure
|
|
INCLUDES= $(all_includes) $(LIBNFC_CFLAGS)
|
|
|
|
nfcinclude_HEADERS = mifaretag.h mifareultag.h
|
|
nfcincludedir = $(includedir)/nfc
|
|
|
|
AM_CFLAGS = -I$(top_srcdir)/libnfc
|
|
|
|
noinst_HEADERS = nfc-utils.h
|
|
noinst_LIBRARIES = libnfcutils.a
|
|
|
|
libnfcutils_a_SOURCES = nfc-utils.c
|
|
|
|
nfc_poll_SOURCES = nfc-poll.c
|
|
nfc_poll_LDADD = $(top_builddir)/libnfc/libnfc.la \
|
|
$(top_builddir)/examples/libnfcutils.a
|
|
|
|
nfc_anticol_SOURCES = nfc-anticol.c
|
|
nfc_anticol_LDADD = $(top_builddir)/libnfc/libnfc.la \
|
|
$(top_builddir)/examples/libnfcutils.a
|
|
|
|
nfc_list_SOURCES = nfc-list.c
|
|
nfc_list_LDADD = $(top_builddir)/libnfc/libnfc.la \
|
|
$(top_builddir)/examples/libnfcutils.a
|
|
|
|
nfc_mfultralight_SOURCES = nfc-mfultralight.c mifareultag.h
|
|
nfc_mfultralight_LDADD = $(top_builddir)/libnfc/libnfc.la
|
|
|
|
nfc_mfclassic_SOURCES = nfc-mfclassic.c mifaretag.h
|
|
nfc_mfclassic_LDADD = $(top_builddir)/libnfc/libnfc.la
|
|
|
|
nfc_relay_SOURCES = nfc-relay.c
|
|
nfc_relay_LDADD = $(top_builddir)/libnfc/libnfc.la \
|
|
$(top_builddir)/examples/libnfcutils.a
|
|
|
|
nfc_emulate_SOURCES = nfc-emulate.c
|
|
nfc_emulate_LDADD = $(top_builddir)/libnfc/libnfc.la \
|
|
$(top_builddir)/examples/libnfcutils.a
|
|
|
|
nfcip_target_SOURCES = nfcip-target.c
|
|
nfcip_target_LDADD = $(top_builddir)/libnfc/libnfc.la
|
|
|
|
nfcip_initiator_SOURCES = nfcip-initiator.c
|
|
nfcip_initiator_LDADD = $(top_builddir)/libnfc/libnfc.la
|
|
|
|
dist_man_MANS = nfc-anticol.1 nfc-emulate.1 nfc-list.1 nfc-mfclassic.1 nfc-mfultralight.1 nfc-relay.1
|
|
|
|
EXTRA_DIST = CMakeLists.txt
|