Annotation of embedaddon/libiconv/libcharset/Makefile.devel, revision 1.1.1.3

1.1       misho       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
1.1.1.3 ! misho       6: AUTOCONF = autoconf-2.69
        !             7: AUTOHEADER = autoheader-2.69
        !             8: ACLOCAL = aclocal-1.16
1.1       misho       9: CP = cp
                     10: RM = rm -f
                     11: 
                     12: all : configures include/localcharset.h.build.in
                     13: 
                     14: autoconf/aclocal.m4 : $(wildcard m4/*.m4)
1.1.1.3 ! misho      15:        test -d autoconf || mkdir autoconf
        !            16:        $(ACLOCAL) -I m4 --output=$@ && rm -rf autom4te.cache
1.1       misho      17: 
                     18: configures : configure config.h.in
                     19: 
                     20: configure : configure.ac autoconf/aclocal.m4
1.1.1.3 ! misho      21:        $(AUTOCONF) --include autoconf && rm -rf autom4te.cache
1.1       misho      22: 
                     23: config.h.in : configure.ac autoconf/aclocal.m4
1.1.1.3 ! misho      24:        $(AUTOHEADER) --include autoconf && rm -rf autom4te.cache
1.1       misho      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: 
1.1.1.3 ! misho      32: totally-clean : force
        !            33:        rm -f autoconf/aclocal.m4 configure config.h.in include/localcharset.h.build.in
        !            34: 
1.1       misho      35: force :

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>