From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/iconv/libcharset/Makefile.in | 85 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 jni/iconv/libcharset/Makefile.in (limited to 'jni/iconv/libcharset/Makefile.in') diff --git a/jni/iconv/libcharset/Makefile.in b/jni/iconv/libcharset/Makefile.in new file mode 100644 index 0000000..acdf3d4 --- /dev/null +++ b/jni/iconv/libcharset/Makefile.in @@ -0,0 +1,85 @@ +# Makefile for libcharset + +#### Start of system configuration section. #### + + +# Directories used by "make": +srcdir = @srcdir@ + +# Directories used by "make install": +prefix = @prefix@ +local_prefix = /usr/local +exec_prefix = @exec_prefix@ +datarootdir = @datarootdir@ +datadir = @datadir@ +libdir = @libdir@ +includedir = @includedir@ +mandir = @mandir@ + +# Programs used by "make": +CP = cp +RM = rm -f +@SET_MAKE@ + +# Programs used by "make install": +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +mkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinstalldirs + +#### End of system configuration section. #### + +SHELL = /bin/sh + +all : include/libcharset.h force + cd lib && $(MAKE) all + +include/libcharset.h : + if [ ! -d include ] ; then mkdir include ; fi + $(CP) $(srcdir)/include/libcharset.h.in include/libcharset.h + +# Installs the library and include files only. Typically called with only +# $(libdir) and $(includedir) - don't use $(prefix) and $(exec_prefix) here. +install-lib : all force + cd lib && $(MAKE) install-lib libdir='$(libdir)' includedir='$(includedir)' + $(mkinstalldirs) $(includedir) + $(INSTALL_DATA) include/libcharset.h $(includedir)/libcharset.h + $(INSTALL_DATA) include/localcharset.h.inst $(includedir)/localcharset.h + +install : include/libcharset.h include/localcharset.h force + cd lib && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)' + $(mkinstalldirs) $(DESTDIR)$(includedir) + $(INSTALL_DATA) include/libcharset.h $(DESTDIR)$(includedir)/libcharset.h + $(INSTALL_DATA) include/localcharset.h.inst $(DESTDIR)$(includedir)/localcharset.h + +install-strip : install + +installdirs : force + cd lib && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)' + $(mkinstalldirs) $(DESTDIR)$(includedir) + +uninstall : force + cd lib && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)' + $(RM) $(DESTDIR)$(includedir)/libcharset.h + $(RM) $(DESTDIR)$(includedir)/localcharset.h + +check : force + cd lib && $(MAKE) check + +mostlyclean : force + cd lib && $(MAKE) mostlyclean + +clean : force + cd lib && $(MAKE) clean + +distclean : force + cd lib && if test -f Makefile; then $(MAKE) distclean; fi + $(RM) include/libcharset.h include/localcharset.h include/localcharset.h.inst + $(RM) config.status config.log config.cache Makefile config.h libtool + +maintainer-clean : force + cd lib && if test -f Makefile; then $(MAKE) maintainer-clean; fi + $(RM) include/libcharset.h include/localcharset.h include/localcharset.h.inst + $(RM) config.status config.log config.cache Makefile config.h libtool + +force : + -- cgit v1.2.3