diff options
-rw-r--r-- | .gitignore | 7 | ||||
-rw-r--r-- | Makefile.am | 2 | ||||
-rwxr-xr-x | autogen.sh | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | m4/acinclude.m4 (renamed from acinclude.m4) | 0 |
5 files changed, 6 insertions, 7 deletions
@@ -7,17 +7,18 @@ Makefile | |||
7 | Makefile.in | 7 | Makefile.in |
8 | 8 | ||
9 | # Exact wildcard, e.g., not in subdirs. | 9 | # Exact wildcard, e.g., not in subdirs. |
10 | /*.m4 | ||
11 | /doc/*.1 | 10 | /doc/*.1 |
12 | /doc/*.5 | 11 | /doc/*.5 |
13 | /doc/*/*.1 | 12 | /doc/*/*.1 |
14 | /doc/*/*.5 | 13 | /doc/*/*.5 |
15 | /nls/*/*.cat | 14 | /nls/*/*.cat |
16 | /nls/*/generated-*.m | 15 | /nls/*/generated-*.m |
16 | /m4/*.m4 | ||
17 | 17 | ||
18 | # Exact match, if a directory then everything in directory. | 18 | # Exact match, if a directory then everything in directory. |
19 | /aclocal.m4 | 19 | /aclocal.m4 |
20 | /autom4te.cache/ | 20 | /autom4te.cache/ |
21 | /build-aux/ | ||
21 | /config.h | 22 | /config.h |
22 | /config.h.in | 23 | /config.h.in |
23 | /config.log | 24 | /config.log |
@@ -26,10 +27,6 @@ Makefile.in | |||
26 | /data/apps | 27 | /data/apps |
27 | /data/init | 28 | /data/init |
28 | /data/menu | 29 | /data/menu |
29 | /depcomp | ||
30 | /install-sh | ||
31 | /ltmain.sh | ||
32 | /missing | ||
33 | /src/FbTk/libFbTk.a | 30 | /src/FbTk/libFbTk.a |
34 | /src/defaults.cc | 31 | /src/defaults.cc |
35 | /src/defaults.hh | 32 | /src/defaults.hh |
diff --git a/Makefile.am b/Makefile.am index 136824f..c98336b 100644 --- a/Makefile.am +++ b/Makefile.am | |||
@@ -5,7 +5,7 @@ | |||
5 | 5 | ||
6 | SUBDIRS = doc nls src util data | 6 | SUBDIRS = doc nls src util data |
7 | MAINTAINERCLEANFILES = aclocal.m4 config.h.in configure Makefile.in stamp-h.in | 7 | MAINTAINERCLEANFILES = aclocal.m4 config.h.in configure Makefile.in stamp-h.in |
8 | ACLOCAL_AMFLAGS = -I . | 8 | ACLOCAL_AMFLAGS = -I m4 |
9 | EXTRA_DIST = acinclude.m4 $(top_srcdir)/3rd/vim/* $(top_srcdir)/3rd/vim/syntax/* | 9 | EXTRA_DIST = acinclude.m4 $(top_srcdir)/3rd/vim/* $(top_srcdir)/3rd/vim/syntax/* |
10 | 10 | ||
11 | uninstall-hook: | 11 | uninstall-hook: |
@@ -14,7 +14,7 @@ dothis() { | |||
14 | 14 | ||
15 | libtoolize --copy --force --automake | 15 | libtoolize --copy --force --automake |
16 | rm -f config.cache | 16 | rm -f config.cache |
17 | dothis aclocal -I . ${ACLOCAL_FLAGS} | 17 | dothis aclocal -I m4 ${ACLOCAL_FLAGS} |
18 | dothis autoheader | 18 | dothis autoheader |
19 | dothis automake -a -c | 19 | dothis automake -a -c |
20 | dothis autoconf | 20 | dothis autoconf |
diff --git a/configure.ac b/configure.ac index e7b34ef..a7841b5 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -5,6 +5,8 @@ AC_INIT([fluxbox], | |||
5 | [fluxbox-devel@lists.sourceforge.net],, | 5 | [fluxbox-devel@lists.sourceforge.net],, |
6 | [http://fluxbox.org/]) | 6 | [http://fluxbox.org/]) |
7 | AC_CONFIG_SRCDIR([src/fluxbox.cc]) | 7 | AC_CONFIG_SRCDIR([src/fluxbox.cc]) |
8 | AC_CONFIG_AUX_DIR([build-aux]) | ||
9 | AC_CONFIG_MACRO_DIR([m4]) | ||
8 | AC_USE_SYSTEM_EXTENSIONS | 10 | AC_USE_SYSTEM_EXTENSIONS |
9 | AM_INIT_AUTOMAKE([foreign 1.10 tar-pax dist-bzip2 subdir-objects]) | 11 | AM_INIT_AUTOMAKE([foreign 1.10 tar-pax dist-bzip2 subdir-objects]) |
10 | 12 | ||
diff --git a/acinclude.m4 b/m4/acinclude.m4 index a233530..a233530 100644 --- a/acinclude.m4 +++ b/m4/acinclude.m4 | |||