Soooo fragile :-))))
This commit is contained in:
parent
e8eec583ed
commit
f6fc637d77
6 changed files with 25 additions and 2 deletions
|
@ -119,4 +119,9 @@ dist_man_MANS = \
|
||||||
pn53x-sam.1 \
|
pn53x-sam.1 \
|
||||||
pn53x-tamashell.1
|
pn53x-tamashell.1
|
||||||
|
|
||||||
|
if HAS_LOG4C
|
||||||
|
AM_CFLAGS += @log4c_CFLAGS@
|
||||||
|
LIBADD = @log4c_LIBS@
|
||||||
|
endif
|
||||||
|
|
||||||
EXTRA_DIST = CMakeLists.txt
|
EXTRA_DIST = CMakeLists.txt
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
|
|
||||||
nfcinclude_HEADERS = \
|
nfcinclude_HEADERS = \
|
||||||
|
iso7816.h \
|
||||||
nfc.h \
|
nfc.h \
|
||||||
nfc-emulation.h \
|
nfc-emulation.h \
|
||||||
nfc-types.h
|
nfc-types.h
|
||||||
|
|
|
@ -34,8 +34,8 @@ if LIBUSB_ENABLED
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if HAS_LOG4C
|
if HAS_LOG4C
|
||||||
libnfc_la_CFLAGS += $(log4c_CFLAGS)
|
libnfc_la_CFLAGS += @log4c_CFLAGS@
|
||||||
libnfc_la_LIBADD += $(log4c_LIBS)
|
libnfc_la_LIBADD += @log4c_LIBS@
|
||||||
|
|
||||||
libnfc_la_SOURCES += log.c
|
libnfc_la_SOURCES += log.c
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -8,3 +8,8 @@ libnfcbuses_la_SOURCES = uart.c
|
||||||
libnfcbuses_la_CFLAGS = -I$(top_srcdir)/libnfc
|
libnfcbuses_la_CFLAGS = -I$(top_srcdir)/libnfc
|
||||||
|
|
||||||
EXTRA_DIST = uart_posix.c uart_win32.c
|
EXTRA_DIST = uart_posix.c uart_win32.c
|
||||||
|
|
||||||
|
if HAS_LOG4C
|
||||||
|
libnfcbuses_la_CFLAGS += @log4c_CFLAGS@
|
||||||
|
libnfcbuses_la_LIBADD = @log4c_LIBS@
|
||||||
|
endif
|
||||||
|
|
|
@ -6,3 +6,10 @@ noinst_HEADERS = pn53x.h pn53x-internal.h
|
||||||
noinst_LTLIBRARIES = libnfcchips.la
|
noinst_LTLIBRARIES = libnfcchips.la
|
||||||
libnfcchips_la_SOURCES = pn53x.c
|
libnfcchips_la_SOURCES = pn53x.c
|
||||||
libnfcchips_la_CFLAGS = -I$(top_srcdir)/libnfc
|
libnfcchips_la_CFLAGS = -I$(top_srcdir)/libnfc
|
||||||
|
|
||||||
|
|
||||||
|
if HAS_LOG4C
|
||||||
|
libnfcchips_la_CFLAGS += @log4c_CFLAGS@
|
||||||
|
libnfcchips_la_LIBADD = @log4c_LIBS@
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
|
@ -34,3 +34,8 @@ if LIBUSB_ENABLED
|
||||||
libnfcdrivers_la_LIBADD += @libusb_LIBS@
|
libnfcdrivers_la_LIBADD += @libusb_LIBS@
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if HAS_LOG4C
|
||||||
|
libnfcdrivers_la_CFLAGS += @log4c_CFLAGS@
|
||||||
|
libnfcdrivers_la_LIBADD += @log4c_LIBS@
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue