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

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
                      6: AUTOCONF = autoconf-2.63
                      7: AUTOHEADER = autoheader-2.63
                      8: ACLOCAL = aclocal-1.11
                      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:        $(ACLOCAL) -I m4 --output=$@
                     16: 
                     17: configures : configure config.h.in
                     18: 
                     19: configure : configure.ac autoconf/aclocal.m4
                     20:        $(AUTOCONF) --include autoconf
                     21: 
                     22: config.h.in : configure.ac autoconf/aclocal.m4
                     23:        $(AUTOHEADER) --include autoconf
                     24:        touch config.h.in
                     25: 
                     26: include/localcharset.h.build.in : include/localcharset.h.in include/export.h
                     27:        sed -e 's/extern \([^"]\)/extern LIBCHARSET_DLL_EXPORTED \1/' \
                     28:            -e '/#define _LOCALCHARSET_H/r include/export.h' \
                     29:          < $< > $@
                     30: 
                     31: force :

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