Convert build process to autotools
Replaced the use of a manual Makefile with the use of autotools to
automatically verify and generate the necessary build files. Follow the
steps outlined within the README.md file to build the package.
Change-Id: I60389df5a9926d4756c51ac7aab7eeca9ae8aff8
Signed-off-by: Matthew Barth <msbarth@us.ibm.com>
diff --git a/Makefile.am b/Makefile.am
new file mode 100644
index 0000000..737a693
--- /dev/null
+++ b/Makefile.am
@@ -0,0 +1,5 @@
+sbin_PROGRAMS = btbridged
+
+btbridged_SOURCES = btbridged.c
+btbridged_LDFLAGS = $(SYSTEMD_LIBS)
+btbridged_CFLAGS = $(SYSTEMD_CFLAGS)