From 1ca0d6da90c168cba9f66a10459beda3188774ca Mon Sep 17 00:00:00 2001 From: Qball Cow Date: Sun, 2 Nov 2008 20:53:30 +0100 Subject: [PATCH] initial import --- Makefile.am | 2 ++ autogen.sh | 5 +++++ configure.ac | 8 ++++++++ 3 files changed, 15 insertions(+) create mode 100644 Makefile.am create mode 100644 autogen.sh create mode 100644 configure.ac diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..6c88c85 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,2 @@ +AUTOMAKE_OPTIONS = foreign 1.6 +SUBDIRS = gmpc-last.fm diff --git a/autogen.sh b/autogen.sh new file mode 100644 index 0000000..3c40d14 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,5 @@ +git clone git://repo.or.cz/gmpc-last.fm +aclocal +automake --gnu -f --add-missing +autoconf + diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..e302650 --- /dev/null +++ b/configure.ac @@ -0,0 +1,8 @@ +AC_INIT([gmpc-plugins], [0.16.2]) +AC_CONFIG_AUX_DIR([.]) +AM_INIT_AUTOMAKE +AC_PROG_CC +AC_CONFIG_FILES([Makefile]) + +AC_CONFIG_SUBDIRS([gmpc-last.fm]) +AC_OUTPUT -- 2.11.4.GIT