Branch
Hash :
6a93e918
Author :
Date :
2025-05-31T14:47:08
Switch to automake 1.18. * autogen.sh: Update comment. * Makefile.devel (AUTOMAKE, ACLOCAL): Use binary from automake 1.18. * libcharset/autogen.sh: Update comment. * libcharset/Makefile.devel (ACLOCAL): Use binary from automake 1.18.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
# 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
AUTOHEADER = autoheader
ACLOCAL = aclocal-1.18
CP = cp
RM = rm -f
all : configures include/libcharset.h.build.in include/localcharset.h.build.in
autoconf/aclocal.m4 : $(wildcard m4/*.m4)
test -d autoconf || mkdir autoconf
$(ACLOCAL) -I m4 --output=$@ && rm -rf autom4te.cache
configures : configure config.h.in
configure : configure.ac autoconf/aclocal.m4
$(AUTOCONF) --include autoconf && rm -rf autom4te.cache
config.h.in : configure.ac autoconf/aclocal.m4
$(AUTOHEADER) --include autoconf && rm -rf autom4te.cache
touch config.h.in
include/libcharset.h.build.in : include/libcharset.h.in include/export.h
cat $< \
| sed -e 's/extern \([^"]\)/extern LIBCHARSET_SHLIB_EXPORTED \1/' \
-e '/#define _LIBCHARSET_H/r include/export.h' \
| sed -e '/#define _LIBCHARSET_H/,/[*][/]$$/{/#define _LIBCHARSET_H/!d;}' \
> $@
include/localcharset.h.build.in : include/localcharset.h.in include/export.h
cat $< \
| sed -e 's/extern \([^"]\)/extern LIBCHARSET_SHLIB_EXPORTED \1/' \
-e '/#define _LOCALCHARSET_H/r include/export.h' \
| sed -e '/#define _LOCALCHARSET_H/,/[*][/]$$/{/#define _LOCALCHARSET_H/!d;}' \
> $@
totally-clean : force
rm -f autoconf/aclocal.m4 configure config.h.in include/libcharset.h.build.in include/localcharset.h.build.in
force :