1# This is the developer's makefile, not the user's makefile.
2# Don't use it unless you know exactly what you do!
3
4SHELL = /bin/sh
5MAKE = make
6AUTOCONF = autoconf-2.68
7ACLOCAL = aclocal-1.11
8CP = cp
9RM = rm -f
10
11all : configures
12
13aclocal.m4 : $(wildcard ../m4/*.m4)
14	$(ACLOCAL) -I ../m4 -I ../srcm4 --output=$@
15
16configures : configure
17
18configure : configure.ac aclocal.m4
19	$(AUTOCONF)
20
21force :
22