From 46937e2d78b99709c36b913c094de70f9b58a82f Mon Sep 17 00:00:00 2001 From: David King Date: Fri, 23 May 2014 10:26:01 +0800 Subject: Add skeleton build system Run "autoreconf --force --install" to create the build system, then run "./configure" to check for necessary dependencies, such as make. Finally, run "make install" to install (into the default prefix). Examine the output from "./configure --help" to learn how to change the prefix and other installation settings. --- Makefile.am | 1 + configure.ac | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 Makefile.am create mode 100644 configure.ac diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..0850115 --- /dev/null +++ b/Makefile.am @@ -0,0 +1 @@ +dist_bin_SCRIPTS = python-gnome-app diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..4eb2325 --- /dev/null +++ b/configure.ac @@ -0,0 +1,11 @@ +AC_INIT([Python GNOME App], + [0.1], + [amigadave@amigadave.com], + [python-gnome-app], + [http://fedorapeople.org/cgit/amigadave/public_git/python-gnome-app.git/]) + +AM_INIT_AUTOMAKE([1.11 foreign]) + +AC_CONFIG_FILES([Makefile]) + +AC_OUTPUT -- cgit