From 86cd83ce2348ca8d2e399b50ab8ae3c7abedb9a1 Mon Sep 17 00:00:00 2001 From: Naoto Yamaguchi Date: Sun, 3 Jul 2022 23:12:56 +0900 Subject: Add base automake and autoconf files The librefop use autoconf and automake build strategy. This patch add initial autoconf and automake files. Bug-AGL: SPEC-4500 Signed-off-by: Naoto Yamaguchi Change-Id: Id7c171242acca1357fdf02abe147b6f3b9ff7dfa --- Makefile.am | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile.am (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..2fbf961 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,12 @@ +SUBDIRS = lib + +if ENABLE_TEST +SUBDIRS += test +endif + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = libredundancyfileop.pc + +CLEANFILES = libredundancyfileop.pc + + -- cgit