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:
4: SHELL = /bin/sh
5: MAKE = make
6: AUTOCONF = autoconf-2.69
7: AUTOHEADER = autoheader-2.69
8: ACLOCAL = aclocal-1.16
9: CP = cp
10: RM = rm -f
11:
12: all : configures include/localcharset.h.build.in
13:
14: autoconf/aclocal.m4 : $(wildcard m4/*.m4)
15: test -d autoconf || mkdir autoconf
16: $(ACLOCAL) -I m4 --output=$@ && rm -rf autom4te.cache
17:
18: configures : configure config.h.in
19:
20: configure : configure.ac autoconf/aclocal.m4
21: $(AUTOCONF) --include autoconf && rm -rf autom4te.cache
22:
23: config.h.in : configure.ac autoconf/aclocal.m4
24: $(AUTOHEADER) --include autoconf && rm -rf autom4te.cache
25: touch config.h.in
26:
27: include/localcharset.h.build.in : include/localcharset.h.in include/export.h
28: sed -e 's/extern \([^"]\)/extern LIBCHARSET_DLL_EXPORTED \1/' \
29: -e '/#define _LOCALCHARSET_H/r include/export.h' \
30: < $< > $@
31:
32: totally-clean : force
33: rm -f autoconf/aclocal.m4 configure config.h.in include/localcharset.h.build.in
34:
35: force :
36:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>