|
version 1.1, 2012/02/21 22:57:48
|
version 1.1.1.3, 2021/03/17 13:38:46
|
|
Line 3
|
Line 3
|
| |
|
| SHELL = /bin/sh |
SHELL = /bin/sh |
| MAKE = make |
MAKE = make |
| AUTOCONF = autoconf-2.63 | AUTOCONF = autoconf-2.69 |
| AUTOHEADER = autoheader-2.63 | AUTOHEADER = autoheader-2.69 |
| ACLOCAL = aclocal-1.11 | ACLOCAL = aclocal-1.16 |
| CP = cp |
CP = cp |
| RM = rm -f |
RM = rm -f |
| |
|
| all : configures include/localcharset.h.build.in |
all : configures include/localcharset.h.build.in |
| |
|
| autoconf/aclocal.m4 : $(wildcard m4/*.m4) |
autoconf/aclocal.m4 : $(wildcard m4/*.m4) |
| $(ACLOCAL) -I m4 --output=$@ | test -d autoconf || mkdir autoconf |
| | $(ACLOCAL) -I m4 --output=$@ && rm -rf autom4te.cache |
| |
|
| configures : configure config.h.in |
configures : configure config.h.in |
| |
|
| configure : configure.ac autoconf/aclocal.m4 |
configure : configure.ac autoconf/aclocal.m4 |
| $(AUTOCONF) --include autoconf | $(AUTOCONF) --include autoconf && rm -rf autom4te.cache |
| |
|
| config.h.in : configure.ac autoconf/aclocal.m4 |
config.h.in : configure.ac autoconf/aclocal.m4 |
| $(AUTOHEADER) --include autoconf | $(AUTOHEADER) --include autoconf && rm -rf autom4te.cache |
| touch config.h.in |
touch config.h.in |
| |
|
| include/localcharset.h.build.in : include/localcharset.h.in include/export.h |
include/localcharset.h.build.in : include/localcharset.h.in include/export.h |
| sed -e 's/extern \([^"]\)/extern LIBCHARSET_DLL_EXPORTED \1/' \ |
sed -e 's/extern \([^"]\)/extern LIBCHARSET_DLL_EXPORTED \1/' \ |
| -e '/#define _LOCALCHARSET_H/r include/export.h' \ |
-e '/#define _LOCALCHARSET_H/r include/export.h' \ |
| < $< > $@ |
< $< > $@ |
| |
|
| |
totally-clean : force |
| |
rm -f autoconf/aclocal.m4 configure config.h.in include/localcharset.h.build.in |
| |
|
| force : |
force : |