From a9e4c915f266316096295ba77f9815fb0cdc6b0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= Date: Tue, 5 Feb 2019 08:15:52 -1000 Subject: [PATCH] Add missing INCLUDES CC pn53x-tamashell.o pn53x-tamashell.c:48:12: fatal error: 'readline/readline.h' file not found # include ^~~~~~~~~~~~~~~~~~~~~ 1 error generated. --- examples/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/Makefile.am b/examples/Makefile.am index c767532..8048b9f 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -74,6 +74,7 @@ pn53x_sam_LDADD = $(top_builddir)/libnfc/libnfc.la \ pn53x_tamashell_SOURCES = pn53x-tamashell.c pn53x_tamashell_LDADD = $(top_builddir)/libnfc/libnfc.la \ $(top_builddir)/utils/libnfcutils.la +pn53x_tamashell_CFLAGS = @READLINE_INCLUDES@ pn53x_tamashell_LDFLAGS = @READLINE_LIBS@ quick_start_example1_SOURCES = doc/quick_start_example1.c