summaryrefslogtreecommitdiff
path: root/jni/iconv/preload/Makefile.devel
blob: f411571c1531b07c7586d504085f14ef88137a02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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.63
ACLOCAL = aclocal-1.11
CP = cp
RM = rm -f

all : configures

aclocal.m4 : $(wildcard ../m4/*.m4)
        $(ACLOCAL) -I ../m4 -I ../srcm4 --output=$@

configures : configure

configure : configure.ac aclocal.m4
        $(AUTOCONF)

force :