Make Makefile.devel more useful for the users of the released tarball.
[libiconv.git] / preload / Makefile.devel
blob30b8fda6af4b8ec2dc741039458d6067325767a4
1 # This is the developer's makefile, not the user's makefile.
2 # Don't use it unless you know exactly what you do!
4 SHELL = /bin/sh
5 MAKE = make
6 AUTOCONF = autoconf-2.69
7 ACLOCAL = aclocal-1.15
8 CP = cp
9 RM = rm -f
11 all : configures
13 aclocal.m4 : $(wildcard ../m4/*.m4)
14         $(ACLOCAL) -I ../m4 -I ../srcm4 --output=$@
16 configures : configure
18 configure : configure.ac aclocal.m4
19         $(AUTOCONF)
21 totally-clean : all
22         rm -f aclocal.m4 configure
24 force :