Add initial files for physical LED controller

This daemon uses sysfs entry for a particular LED and then triggers
necessary action. Name and Path of the LED is needed as command line
options to make sure this is genreric implementation.

Change-Id: I3d52f1491fcb6ae8119b399a4d2c6770a3f5db30
Signed-off-by: Vishwanatha Subbanna <vishwa@linux.vnet.ibm.com>
diff --git a/Makefile.am b/Makefile.am
new file mode 100644
index 0000000..fdf4020
--- /dev/null
+++ b/Makefile.am
@@ -0,0 +1,6 @@
+sbin_PROGRAMS = phosphor-ledcontroller
+
+phosphor_ledcontroller_SOURCES = controller.cpp argument.cpp
+
+phosphor_ledcontroller_LDFLAGS = $(SYSTEMD_LIBS)
+phosphor_ledcontroller_CFLAGS = $(SYSTEMD_CFLAGS)