From 193809f9497ee04f8641d289f41f0c70a4ec6f85 Mon Sep 17 00:00:00 2001 From: Romain Tartiere Date: Wed, 24 Nov 2010 00:07:47 +0000 Subject: [PATCH] Don't build libtestcommon.la if we are not using cutter. --- test/common/Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/common/Makefile.am b/test/common/Makefile.am index 64a111c..2693601 100644 --- a/test/common/Makefile.am +++ b/test/common/Makefile.am @@ -3,8 +3,12 @@ INCLUDES = $(CUTTER_CFLAGS) -I$(top_srcdir)/libfreefare AM_CFLAGS = @LIBNFC_CFLAGS@ +if WITH_CUTTER + noinst_LTLIBRARIES = \ libtestcommon.la libtestcommon_la_SOURCES = mifare_desfire_auto_authenticate.c \ mifare_desfire_auto_authenticate.h + +endif