meson: Remove autotools build files

Remove autotools build files as switching to meson.

Tested: meson build passes 'ninja -C build'

Change-Id: I4203c103b1355b78dec931c064da55e88f26e894
Signed-off-by: Jagpal Singh Gill <paligill@gmail.com>
diff --git a/.gitignore b/.gitignore
index be28da4..6da54be 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,60 +1,3 @@
-settings_file.py
-
-# http://www.gnu.org/software/automake
-
-Makefile.in
-/ar-lib
-/mdate-sh
-/py-compile
-/test-driver
-/ylwrap
-
-# http://www.gnu.org/software/autoconf
-
-/autom4te.cache
-/autoscan.log
-/autoscan-*.log
-/aclocal.m4
-/compile
-/config.guess
-/config.h.in
-/config.sub
-/configure
-/configure.scan
-/depcomp
-/install-sh
-/missing
-/stamp-h1
-
-# https://www.gnu.org/software/libtool/
-
-/ltmain.sh
-
-# http://www.gnu.org/software/texinfo
-
-/texinfo.tex
-
-# Repo Specific Items
-*.o
-/config.h
-/config.h.in~
-/config.log
-/config.status
-Makefile
-.deps
-.dirstamp
-/lib*
-.libs/
-/*-libtool
-.project
-/test/*.log
-/test/*.trs
-# ignore vim swap files
-.*.sw*
-# failures from patch
-*.orig
-*.rej
-# backup files from some editors
-*~
-.cscope/
-build/
+build*/
+subprojects/*
+!subprojects/*.wrap
diff --git a/Makefile.am b/Makefile.am
deleted file mode 100755
index 84e11a7..0000000
--- a/Makefile.am
+++ /dev/null
@@ -1,35 +0,0 @@
-AM_DEFAULT_SOURCE_EXT = .cpp
-
-BUILT_SOURCES = \
-	settings_manager.hpp
-CLEANFILES = \
-	settings_manager.hpp
-
-SETTINGS_GEN_SCRIPT ?= \
-	${abs_srcdir}/settings.py
-SETTINGS_GEN_SCRIPT_FILES ?= \
-	${abs_srcdir}/settings_example.yaml \
-	${abs_srcdir}/settings_manager.mako.hpp
-
-settings_manager.hpp: ${SETTINGS_GEN_SCRIPT} ${SETTINGS_GEN_SCRIPT_FILES}
-	$(AM_V_GEN)@SETTINGSGEN@
-
-# Build these headers, don't install them
-noinst_HEADERS = \
-	settings_manager.hpp
-
-bin_PROGRAMS = \
-	phosphor-settings-manager
-
-phosphor_settings_manager_SOURCES = \
-	settings_main.cpp
-
-phosphor_settings_manager_CXXFLAGS = \
-	$(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \
-	$(SDBUSPLUS_CFLAGS) \
-	$(PHOSPHOR_LOGGING_CFLAGS)
-
-phosphor_settings_manager_LDADD = \
-	$(PHOSPHOR_DBUS_INTERFACES_LIBS) \
-	$(SDBUSPLUS_LIBS) \
-	$(PHOSPHOR_LOGGING_LIBS)
diff --git a/bootstrap.sh b/bootstrap.sh
deleted file mode 100755
index 6b3c8b9..0000000
--- a/bootstrap.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh -xe
-
-AUTOCONF_FILES="Makefile.in aclocal.m4 ar-lib autom4te.cache compile \
-        config.guess config.h.in config.sub configure depcomp install-sh \
-        ltmain.sh missing *libtool test-driver"
-
-case $1 in
-    clean)
-        test -f Makefile && make maintainer-clean
-        for file in ${AUTOCONF_FILES}; do
-            find . -name "$file" -print0 | xargs -0 -r rm -rf
-        done
-        exit 0
-        ;;
-esac
-
-autoreconf -i
-# shellcheck disable=SC2016
-echo 'Run "./configure ${CONFIGURE_FLAGS} && make"'
diff --git a/configure.ac b/configure.ac
deleted file mode 100644
index 8e1a491..0000000
--- a/configure.ac
+++ /dev/null
@@ -1,29 +0,0 @@
-AC_PREREQ([2.69])
-AC_INIT([phosphor-settingsd], [1.0], [https://github.com/openbmc/phosphor-settingsd/issues])
-AC_LANG([C++])
-AC_CONFIG_HEADERS([config.h])
-AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz])
-AM_SILENT_RULES([yes])
-
-AC_PROG_CXX
-AM_PROG_AR
-AC_PROG_INSTALL
-AC_PROG_MAKE_SET
-AM_PATH_PYTHON([3], [AC_SUBST([PYTHON], [echo "$PYTHON"])], [AC_MSG_ERROR(
-    [Could not find python-3 installed...python-3 is required])])
-
-PKG_CHECK_MODULES([PHOSPHOR_DBUS_INTERFACES], [phosphor-dbus-interfaces])
-PKG_CHECK_MODULES([SDBUSPLUS], [sdbusplus])
-PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging])
-
-LT_INIT
-
-AX_CXX_COMPILE_STDCXX([20], [noext])
-AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS])
-
-AS_IF([test "x$SETTINGS_YAML" == "x"], [SETTINGS_YAML="settings_example.yaml"])
-SETTINGSGEN="$PYTHON $srcdir/settings.py -i $SETTINGS_YAML"
-AC_SUBST(SETTINGSGEN)
-
-AC_CONFIG_FILES([Makefile])
-AC_OUTPUT