b2839540d6
When building with the ancient automake 1.6 version, the following errors occur: Makefile.am:5: invalid variable `doc_DATA' doc/Makefile.am:2: invalid variable `doc_DATA' This patches renames some internal variables.
12 lines
226 B
Makefile
12 lines
226 B
Makefile
ACLOCAL_AMFLAGS = -I m4
|
|
AUTOMAKE_OPTIONS = foreign 1.6
|
|
|
|
SUBDIRS = src doc
|
|
docs = README UPGRADING
|
|
EXTRA_DIST = COPYING $(docs) m4 autogen.sh scripts .gitignore
|
|
|
|
sparse-check test:
|
|
$(MAKE) -C src $@
|
|
|
|
.PHONY: sparse-check test
|