summaryrefslogtreecommitdiff
path: root/jni/iconv/libcharset/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'jni/iconv/libcharset/Makefile.in')
-rw-r--r--jni/iconv/libcharset/Makefile.in85
1 files changed, 85 insertions, 0 deletions
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 :
+