summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid King <amigadave@amigadave.com>2014-05-23 10:26:01 +0800
committerDavid King <amigadave@amigadave.com>2014-05-23 10:33:24 +0800
commit46937e2d78b99709c36b913c094de70f9b58a82f (patch)
tree18823f76f27eb1a285007c6c053a9e31713a7897
parent8745a28cef42ba0134b2672f5131a62b782958c1 (diff)
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.
-rw-r--r--Makefile.am1
-rw-r--r--configure.ac11
2 files changed, 12 insertions, 0 deletions
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