Annotation of embedaddon/libiconv/libcharset/Makefile.in, revision 1.1.1.2

1.1       misho       1: # Makefile for libcharset
                      2: 
                      3: #### Start of system configuration section. ####
                      4: 
                      5: 
                      6: # Directories used by "make":
                      7: srcdir = @srcdir@
                      8: 
                      9: # Directories used by "make install":
                     10: prefix = @prefix@
                     11: local_prefix = /usr/local
                     12: exec_prefix = @exec_prefix@
                     13: datarootdir = @datarootdir@
                     14: datadir = @datadir@
                     15: libdir = @libdir@
                     16: includedir = @includedir@
                     17: mandir = @mandir@
                     18: 
                     19: # Programs used by "make":
                     20: CP = cp
                     21: RM = rm -f
                     22: @SET_MAKE@
                     23: 
                     24: # Programs used by "make install":
                     25: INSTALL = @INSTALL@
                     26: INSTALL_DATA = @INSTALL_DATA@
                     27: mkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinstalldirs
                     28: 
                     29: #### End of system configuration section. ####
                     30: 
1.1.1.2 ! misho      31: SHELL = @SHELL@
1.1       misho      32: 
                     33: all : include/libcharset.h force
                     34:        cd lib && $(MAKE) all
                     35: 
                     36: include/libcharset.h :
                     37:        if [ ! -d include ] ; then mkdir include ; fi
                     38:        $(CP) $(srcdir)/include/libcharset.h.in include/libcharset.h
                     39: 
                     40: # Installs the library and include files only. Typically called with only
                     41: # $(libdir) and $(includedir) - don't use $(prefix) and $(exec_prefix) here.
                     42: install-lib : all force
                     43:        cd lib && $(MAKE) install-lib libdir='$(libdir)' includedir='$(includedir)'
                     44:        $(mkinstalldirs) $(includedir)
                     45:        $(INSTALL_DATA) include/libcharset.h $(includedir)/libcharset.h
                     46:        $(INSTALL_DATA) include/localcharset.h.inst $(includedir)/localcharset.h
                     47: 
                     48: install : include/libcharset.h include/localcharset.h force
                     49:        cd lib && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'
                     50:        $(mkinstalldirs) $(DESTDIR)$(includedir)
                     51:        $(INSTALL_DATA) include/libcharset.h $(DESTDIR)$(includedir)/libcharset.h
                     52:        $(INSTALL_DATA) include/localcharset.h.inst $(DESTDIR)$(includedir)/localcharset.h
                     53: 
                     54: install-strip : install
                     55: 
                     56: installdirs : force
                     57:        cd lib && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'
                     58:        $(mkinstalldirs) $(DESTDIR)$(includedir)
                     59: 
                     60: uninstall : force
                     61:        cd lib && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'
                     62:        $(RM) $(DESTDIR)$(includedir)/libcharset.h
                     63:        $(RM) $(DESTDIR)$(includedir)/localcharset.h
                     64: 
                     65: check : force
                     66:        cd lib && $(MAKE) check
                     67: 
                     68: mostlyclean : force
                     69:        cd lib && $(MAKE) mostlyclean
                     70: 
                     71: clean : force
                     72:        cd lib && $(MAKE) clean
                     73: 
                     74: distclean : force
                     75:        cd lib && if test -f Makefile; then $(MAKE) distclean; fi
                     76:        $(RM) include/libcharset.h include/localcharset.h include/localcharset.h.inst
                     77:        $(RM) config.status config.log config.cache Makefile config.h libtool
                     78: 
                     79: maintainer-clean : force
                     80:        cd lib && if test -f Makefile; then $(MAKE) maintainer-clean; fi
                     81:        $(RM) include/libcharset.h include/localcharset.h include/localcharset.h.inst
                     82:        $(RM) config.status config.log config.cache Makefile config.h libtool
                     83: 
1.1.1.2 ! misho      84: # List of source files.
        !            85: SOURCE_FILES = \
        !            86:   README DEPENDENCIES INSTALL.windows HACKING INTEGRATE AUTHORS NEWS \
        !            87:   ChangeLog Makefile.devel configure.ac Makefile.in \
        !            88:   include/export.h include/libcharset.h.in include/localcharset.h.in \
        !            89:   tools/README \
        !            90:   tools/all-charsets tools/all-charsets-X11 tools/all-locales \
        !            91:   tools/locale_charmap \
        !            92:   tools/locale_charset.c \
        !            93:   tools/locale_codeset.c \
        !            94:   tools/locale_monthnames.c \
        !            95:   tools/locale_x11encoding.c \
        !            96:   tools/aix-3.2.5 tools/aix-4.1.5 tools/aix-4.2.0 tools/aix-4.3.2 \
        !            97:   tools/beos-5 \
        !            98:   tools/cygwin-1.7.2 \
        !            99:   tools/darwin-6.8 tools/darwin-7.5 tools/darwin-9.5 \
        !           100:   tools/freebsd-3.3 \
        !           101:   tools/glibc-2.1.3 tools/glibc-2.1.90 tools/glibc-2.2 \
        !           102:   tools/glibc-2.2-XF86-3.3.6 tools/glibc-2.2-XF86-4.0.1f \
        !           103:   tools/hpux-10.01 tools/hpux-10.20 tools/hpux-11.00 \
        !           104:   tools/irix-6.5 \
        !           105:   tools/netbsd-3.0 \
        !           106:   tools/openbsd-4.1 \
        !           107:   tools/osf1-4.0a tools/osf1-4.0d tools/osf1-5.1 \
        !           108:   tools/solaris-2.4 tools/solaris-2.5.1 tools/solaris-2.6 tools/solaris-2.6-cjk tools/solaris-2.7 \
        !           109:   tools/sunos-4.1.4 \
        !           110:   tools/win32
        !           111: # List of distributed files imported from other packages.
        !           112: LIBTOOL_IMPORTED_FILES = \
        !           113:   build-aux/ltmain.sh \
        !           114:   m4/libtool.m4 \
        !           115:   m4/lt~obsolete.m4 \
        !           116:   m4/ltoptions.m4 \
        !           117:   m4/ltsugar.m4 \
        !           118:   m4/ltversion.m4
        !           119: PARENT_IMPORTED_FILES = \
        !           120:   INSTALL.generic \
        !           121:   build-aux/config.guess \
        !           122:   build-aux/config.libpath \
        !           123:   build-aux/config.sub \
        !           124:   build-aux/install-sh \
        !           125:   build-aux/mkinstalldirs \
        !           126:   m4/codeset.m4 \
        !           127:   m4/fcntl-o.m4 \
        !           128:   m4/glibc21.m4 \
        !           129:   m4/visibility.m4
        !           130: IMPORTED_FILES = \
        !           131:   COPYING.LIB \
        !           132:   $(LIBTOOL_IMPORTED_FILES) $(PARENT_IMPORTED_FILES)
        !           133: # List of distributed files generated by autotools or Makefile.devel.
        !           134: GENERATED_FILES = \
        !           135:   autoconf/aclocal.m4 configure config.h.in \
        !           136:   include/localcharset.h.build.in
        !           137: # List of distributed files generated by "make".
        !           138: DISTRIBUTED_BUILT_FILES =
        !           139: # List of distributed files.
        !           140: DISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)
        !           141: 
        !           142: distdir : $(DISTFILES)
        !           143:        for file in $(DISTFILES); do \
        !           144:          if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \
        !           145:          destdir=`echo '$(distdir)'/$$file | sed -e 's|//*[^/]*$$||'`; \
        !           146:          test -d "$$destdir" || mkdir "$$destdir"; \
        !           147:          cp -p "$$dir/$$file" '$(distdir)'/$$file || exit 1; \
        !           148:        done
        !           149:        test -d '$(distdir)'/lib || mkdir '$(distdir)'/lib; cd lib && $(MAKE) distdir distdir='$(distdir)'/lib
        !           150: 
1.1       misho     151: force :
                    152: 

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