This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
Re: Additional aclocal dir
>>>>> "Assar" == Assar Westerlund <assar@sics.se> writes:
Assar> "Gabor Z. Papp" <gzp@gzp.org.hu> writes:
>> can I use/define somehow additional aclocal directory, where I can
>> put additional m4 files?
Assar> Yes, use `aclocal -I dir' where dir is the directory of your
Assar> additional files. If you want that to get included in your
Assar> Makefile.in, you can do something like:
Assar> ACLOCAL = @ACLOCAL@ -I dir
Or
ACLOCAL_AMFLAGS = -I dir
which is slighly better, since I don't think autoreconf will recognize
the former, while it definitely knows the latter.
Akim