--- embedaddon/libiconv/libcharset/Makefile.devel 2012/05/29 09:29:42 1.1.1.2 +++ embedaddon/libiconv/libcharset/Makefile.devel 2021/03/17 13:38:46 1.1.1.3 @@ -3,29 +3,33 @@ SHELL = /bin/sh MAKE = make -AUTOCONF = autoconf-2.68 -AUTOHEADER = autoheader-2.68 -ACLOCAL = aclocal-1.11 +AUTOCONF = autoconf-2.69 +AUTOHEADER = autoheader-2.69 +ACLOCAL = aclocal-1.16 CP = cp RM = rm -f all : configures include/localcharset.h.build.in 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 configure : configure.ac autoconf/aclocal.m4 - $(AUTOCONF) --include autoconf + $(AUTOCONF) --include autoconf && rm -rf autom4te.cache config.h.in : configure.ac autoconf/aclocal.m4 - $(AUTOHEADER) --include autoconf + $(AUTOHEADER) --include autoconf && rm -rf autom4te.cache touch config.h.in include/localcharset.h.build.in : include/localcharset.h.in include/export.h sed -e 's/extern \([^"]\)/extern LIBCHARSET_DLL_EXPORTED \1/' \ -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 :