From 5ae2fca60a84a929fca55131d5c1b486d1e68015 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Sat, 19 Jan 2019 00:28:15 +0100 Subject: rdacheck: Add little tool that reports about what RDA detects. --- util/Makefile.am | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 util/Makefile.am (limited to 'util/Makefile.am') diff --git a/util/Makefile.am b/util/Makefile.am new file mode 100644 index 0000000..8d1d792 --- /dev/null +++ b/util/Makefile.am @@ -0,0 +1,23 @@ +NULL = + +RDA_LIB = -lrda + +DISTCLEANFILES = + +bin_PROGRAMS = rdacheck + +rdacheck_SOURCES = \ + rdacheck.c + +rdacheck_CFLAGS = \ + -Wall -Werror \ + $(LIBRDA_CFLAGS) \ + -I$(top_srcdir)/src/ \ + -DBUILD_DIR="\"$(builddir)\"" \ + $(NULL) + +rdacheck_LDADD = \ + $(RDA_LIB) \ + $(LIBRDA_LIBS) \ + -L$(top_builddir)/src/.libs \ + $(NULL) -- cgit v1.2.3