add missing files for make dist

when creating the package tarball, autogen.sh is handy to have and
the header files are necessary for compilation.

TEST="make dist should include autogen.sh, loadsurface.h and"
TEST="loadsurface_yuv.h on the final tarballs."
TEST="Then tarball user can compile in the same way as github clone"

Signed-off-by: Daniel Charles <daniel.charles@intel.com>
diff --git a/Makefile.am b/Makefile.am
index 54e9e68..908481e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -43,3 +43,7 @@
 	aclocal.m4 compile config.guess config.sub \
 	configure depcomp install-sh ltmain.sh     \
 	Makefile.in missing
+
+EXTRA_DIST = \
+        autogen.sh \
+        $(NULL)
diff --git a/common/Makefile.am b/common/Makefile.am
index 7315106..f6d7959 100644
--- a/common/Makefile.am
+++ b/common/Makefile.am
@@ -58,3 +58,8 @@
 
 # Extra clean files so that maintainer-clean removes *everything*
 MAINTAINERCLEANFILES = Makefile.in
+
+EXTRA_DIST = \
+	loadsurface.h		\
+	loadsurface_yuv.h	\
+	$(NULL)