2011-09-30 13:33:31 +02:00
|
|
|
bin_PROGRAMS = \
|
|
|
|
nfc-emulate-forum-tag2 \
|
|
|
|
nfc-emulate-forum-tag4 \
|
|
|
|
nfc-list \
|
|
|
|
nfc-mfclassic \
|
|
|
|
nfc-mfsetuid \
|
|
|
|
nfc-mfultralight \
|
|
|
|
nfc-relay-picc
|
|
|
|
|
|
|
|
# set the include path found by configure
|
2011-10-01 15:29:18 +02:00
|
|
|
INCLUDES = $(all_includes) $(LIBNFC_CFLAGS)
|
2011-09-30 13:33:31 +02:00
|
|
|
|
2011-10-01 15:29:18 +02:00
|
|
|
AM_CFLAGS =
|
2011-09-30 13:33:31 +02:00
|
|
|
|
|
|
|
noinst_HEADERS = mifare.h nfc-utils.h
|
|
|
|
noinst_LTLIBRARIES = libnfcutils.la
|
|
|
|
|
|
|
|
libnfcutils_la_SOURCES = nfc-utils.c
|
|
|
|
|
|
|
|
nfc_emulate_forum_tag2_SOURCES = nfc-emulate-forum-tag2.c
|
|
|
|
nfc_emulate_forum_tag2_LDADD = $(top_builddir)/libnfc/libnfc.la \
|
|
|
|
libnfcutils.la
|
|
|
|
|
|
|
|
nfc_emulate_forum_tag4_SOURCES = nfc-emulate-forum-tag4.c
|
|
|
|
nfc_emulate_forum_tag4_LDADD = $(top_builddir)/libnfc/libnfc.la \
|
|
|
|
libnfcutils.la
|
|
|
|
|
|
|
|
nfc_list_SOURCES = nfc-list.c
|
|
|
|
nfc_list_LDADD = $(top_builddir)/libnfc/libnfc.la \
|
|
|
|
libnfcutils.la
|
|
|
|
|
|
|
|
nfc_mfultralight_SOURCES = nfc-mfultralight.c mifare.c mifare.h
|
|
|
|
nfc_mfultralight_LDADD = $(top_builddir)/libnfc/libnfc.la
|
|
|
|
|
|
|
|
nfc_mfclassic_SOURCES = nfc-mfclassic.c mifare.c mifare.h
|
|
|
|
nfc_mfclassic_LDADD = $(top_builddir)/libnfc/libnfc.la \
|
|
|
|
libnfcutils.la
|
|
|
|
|
|
|
|
nfc_mfsetuid_SOURCES = nfc-mfsetuid.c
|
|
|
|
nfc_mfsetuid_LDADD = $(top_builddir)/libnfc/libnfc.la \
|
|
|
|
libnfcutils.la
|
|
|
|
|
|
|
|
nfc_relay_picc_SOURCES = nfc-relay-picc.c
|
|
|
|
nfc_relay_picc_LDADD = $(top_builddir)/libnfc/libnfc.la \
|
|
|
|
libnfcutils.la
|
|
|
|
|
|
|
|
dist_man_MANS = \
|
|
|
|
nfc-emulate-forum-tag4.1 \
|
|
|
|
nfc-list.1 \
|
|
|
|
nfc-mfclassic.1 \
|
|
|
|
nfc-mfsetuid.1 \
|
2011-10-03 13:16:42 +02:00
|
|
|
nfc-mfultralight.1 \
|
|
|
|
nfc-relay-picc.1
|
2011-09-30 13:33:31 +02:00
|
|
|
|
|
|
|
if HAS_LOG4C
|
|
|
|
AM_CFLAGS += @log4c_CFLAGS@
|
|
|
|
LIBADD = @log4c_LIBS@
|
|
|
|
endif
|
|
|
|
|
|
|
|
EXTRA_DIST = CMakeLists.txt
|