From f21150e179d2ceae1e743041fbf9ea9eddc93d9a Mon Sep 17 00:00:00 2001 From: Horst3180 Date: Thu, 28 May 2015 17:41:22 +0200 Subject: add build system --- configure.ac | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 configure.ac (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..7e1ebdb --- /dev/null +++ b/configure.ac @@ -0,0 +1,30 @@ +AC_INIT( + [arc-theme], + [20150528], + [https://github.com/horst3180/Arc-theme/issues], + [arc-theme], + [https://github.com/horst3180/Arc-theme], + [] +) + +AC_CONFIG_AUX_DIR([build-aux]) +AC_CONFIG_MACRO_DIR([m4]) +AM_INIT_AUTOMAKE([foreign]) +AC_PROG_MKDIR_P + +ARC_ENABLE([GNOME_SHELL], [gnome-shell], [GNOME Shell], [disable]) +ARC_ENABLE([GTK2], [gtk2], [GTK2], [disable]) +ARC_ENABLE([GTK3], [gtk3], [GTK3], [disable]) +ARC_ENABLE([METACITY], [metacity], [Metacity], [disable]) +ARC_ENABLE([UNITY], [unity], [Unity], [disable]) +ARC_ENABLE([XFWM], [xfwm], [XFWM], [disable]) + +ARC_GNOME + +AC_CONFIG_FILES([ + common/Makefile + extra/Makefile + Makefile +]) + +AC_OUTPUT -- cgit v1.2.3