Annotation of embedaddon/libiconv/libcharset/Makefile.in, revision 1.1
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:
! 31: SHELL = /bin/sh
! 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:
! 84: force :
! 85:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>