
Ensures proper recompilation when a header file is edited. cf https://www.gnu.org/software/automake/manual/html_node/Headers.html
8 lines
233 B
Makefile
8 lines
233 B
Makefile
|
|
# set the include path found by configure
|
|
AM_CPPFLAGS = $(all_includes) $(LIBNFC_CFLAGS)
|
|
|
|
noinst_LTLIBRARIES = libnfcchips.la
|
|
libnfcchips_la_SOURCES = pn53x.c pn53x.h pn53x-internal.h
|
|
libnfcchips_la_CFLAGS = -I$(top_srcdir)/libnfc
|
|
|