meson: Remove compilation using autotools

The intent behind this commit is build obmc-phosphor-power with
meson, so need to remove files related to autotools.

Signed-off-by: George Liu <liuxiwei@inspur.com>
Change-Id: Ie6661bd81c6d815c38c9ff10b0c3c5139476372e
diff --git a/Makefile.am b/Makefile.am
deleted file mode 100644
index 00b91d9..0000000
--- a/Makefile.am
+++ /dev/null
@@ -1,15 +0,0 @@
-AM_DEFAULT_SOURCE_EXT = .cpp
-
-libexec_PROGRAMS = \
-	chassiskill
-
-chassiskill_SOURCES = \
-	chassiskill.cpp
-
-chassiskill_CXXFLAGS = \
-	$(PHOSPHOR_LOGGING_CFLAGS) \
-	$(GPIOPLUS_FLAGS)
-
-chassiskill_LDFLAGS = \
-	$(PHOSPHOR_LOGGING_LIBS) \
-	$(GPIOPLUS_LIBS)
diff --git a/bootstrap.sh b/bootstrap.sh
deleted file mode 100755
index b97c729..0000000
--- a/bootstrap.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh -xe
-
-AUTOCONF_FILES="Makefile.in aclocal.m4 ar-lib autom4te.cache compile \
-        config.guess config.h.in 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" | xargs -r rm -rf
-        done
-        exit 0
-        ;;
-esac
-
-autoreconf -i
-echo 'Run "./configure ${CONFIGURE_FLAGS} && make"'
\ No newline at end of file
diff --git a/configure.ac b/configure.ac
deleted file mode 100644
index ae22c71..0000000
--- a/configure.ac
+++ /dev/null
@@ -1,28 +0,0 @@
-AC_PREREQ([2.69])
-AC_INIT([phosphor-power-control], [1.0], [https://github.com/openbmc/phosphor-power-control/issues])
-AC_LANG([C++])
-AC_CONFIG_HEADERS([config.h])
-AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz])
-AM_SILENT_RULES([yes])
-
-# Checks for programs
-AC_PROG_CXX
-AC_PROG_INSTALL #Checks/sets the install variable to be used
-AC_PROG_MAKE_SET
-
-# Check for libraries
-PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging])
-PKG_CHECK_MODULES([GPIOPLUS], [gpioplus])
-
-# Checks for typedefs, structures, and compiler characteristics.
-AX_CXX_COMPILE_STDCXX_17([noext])
-AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS])
-
-# Checks for library functions
-LT_INIT # Removes WARNING: unrecognized options: --with-libtool-sysroot
-
-# Check for header files.
-AC_CHECK_HEADER(nlohmann/json.hpp, ,[AC_MSG_ERROR([Could not find nlohmann/json.hpp...nlohmann/json package required])])
-
-AC_CONFIG_FILES([Makefile])
-AC_OUTPUT