summaryrefslogtreecommitdiff
path: root/setup-variables.am
diff options
context:
space:
mode:
authorKrzesimir Nowak <krnowak@openismus.com>2011-08-30 16:24:58 +0200
committerKrzesimir Nowak <krnowak@openismus.com>2011-08-30 16:38:34 +0200
commita7ad98fabc965b053cb9e92db431d5b535adee26 (patch)
tree56a912b2390a0dab17a8b1ae85b5911d64840b31 /setup-variables.am
parent36dd42a030f31bc281a8027bd947bbe226a0ea7a (diff)
Port build system to non-recursive Automake.
All but toplevel Makefile.am are replaced with their non-recursive counterparts. The generation of configure.in was removed (and thus configure-{pre,post}.in are also removed) in favor of configure.ac and m4 macros adding backend specific configure parts. Version number is generated like in old build system. There are still many things to improve, but for now there are no immediate regressions. AUTOTOOLS-TODO contains a list of possible improvements and fixes. AUTOTOOLS-TESTING contains what was tested with current build system (configure flags, make options).
Diffstat (limited to 'setup-variables.am')
-rw-r--r--setup-variables.am49
1 files changed, 49 insertions, 0 deletions
diff --git a/setup-variables.am b/setup-variables.am
new file mode 100644
index 00000000..ffc3df18
--- /dev/null
+++ b/setup-variables.am
@@ -0,0 +1,49 @@
+## This file just specifies all variables used in entire project.
+## If any of them was specified before this file is included then those ones
+## won't change the value.
+##
+## The reason for it is that many files are using BUILT_SOURCES, CLEANFILES and
+## other variables. This file allows them to harmlessly append stuff
+## to them without worrying whether the variable was defined earlier.
+
+# clean variables
+CLEANFILES =
+DISTCLEANFILES =
+MAINTAINERCLEANFILES =
+MOSTLYCLEANFILES =
+
+
+# standard arch dependent pkg-config dir
+pkgconfigdir = $(libdir)/pkgconfig
+pkgconfig_DATA =
+
+
+# standard variables with standard prefixes
+dist_doc_DATA =
+dist_noinst_DATA =
+dist_pkgdata_DATA =
+doc_DATA =
+
+lib_LTLIBRARIES =
+noinst_LTLIBRARIES =
+
+bin_PROGRAMS =
+libexec_PROGRAMS =
+noinst_PROGRAMS =
+
+bin_SCRIPTS =
+dist_noinst_SCRIPTS =
+libexec_SCRIPTS =
+nodist_bin_SCRIPTS =
+
+
+# other
+all_dist_hooks =
+all_local_installchecks =
+all_phonies =
+BUILT_SOURCES =
+DIST_SUBDIRS =
+EXTRA_DIST =
+EXTRA_PROGRAMS =
+SUBDIRS =
+TESTS =