blob: d3fd19242a67d26fa42b40f1d2bed03e8e7290fb [file] [log] [blame]
# This is the developer's makefile, not the user's makefile.
# Don't use it unless you know exactly what you do!
SHELL = /bin/sh
MAKE = make
AUTOCONF = autoconf-2.69
ACLOCAL = aclocal-1.16
CP = cp
RM = rm -f
all : configures
aclocal.m4 : $(wildcard ../m4/*.m4)
$(ACLOCAL) -I ../m4 -I ../srcm4 --output=$@ && rm -rf autom4te.cache
configures : configure
configure : configure.ac aclocal.m4
$(AUTOCONF) && rm -rf autom4te.cache
totally-clean : all
rm -f aclocal.m4 configure
force :