Makefile.in 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. # Makefile for libcharset
  2. #### Start of system configuration section. ####
  3. # Directories used by "make":
  4. srcdir = @srcdir@
  5. # Directories used by "make install":
  6. prefix = @prefix@
  7. local_prefix = /usr/local
  8. exec_prefix = @exec_prefix@
  9. datarootdir = @datarootdir@
  10. datadir = @datadir@
  11. libdir = @libdir@
  12. includedir = @includedir@
  13. mandir = @mandir@
  14. # Programs used by "make":
  15. CP = cp
  16. RM = rm -f
  17. @SET_MAKE@
  18. # Programs used by "make install":
  19. INSTALL = @INSTALL@
  20. INSTALL_DATA = @INSTALL_DATA@
  21. mkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinstalldirs
  22. #### End of system configuration section. ####
  23. SHELL = /bin/sh
  24. all : include/libcharset.h force
  25. cd lib && $(MAKE) all
  26. include/libcharset.h :
  27. if [ ! -d include ] ; then mkdir include ; fi
  28. $(CP) $(srcdir)/include/libcharset.h.in include/libcharset.h
  29. # Installs the library and include files only. Typically called with only
  30. # $(libdir) and $(includedir) - don't use $(prefix) and $(exec_prefix) here.
  31. install-lib : all force
  32. cd lib && $(MAKE) install-lib libdir='$(libdir)' includedir='$(includedir)'
  33. $(mkinstalldirs) $(includedir)
  34. $(INSTALL_DATA) include/libcharset.h $(includedir)/libcharset.h
  35. $(INSTALL_DATA) include/localcharset.h.inst $(includedir)/localcharset.h
  36. install : include/libcharset.h include/localcharset.h force
  37. cd lib && $(MAKE) install prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'
  38. $(mkinstalldirs) $(DESTDIR)$(includedir)
  39. $(INSTALL_DATA) include/libcharset.h $(DESTDIR)$(includedir)/libcharset.h
  40. $(INSTALL_DATA) include/localcharset.h.inst $(DESTDIR)$(includedir)/localcharset.h
  41. install-strip : install
  42. installdirs : force
  43. cd lib && $(MAKE) installdirs prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'
  44. $(mkinstalldirs) $(DESTDIR)$(includedir)
  45. uninstall : force
  46. cd lib && $(MAKE) uninstall prefix='$(prefix)' exec_prefix='$(exec_prefix)' libdir='$(libdir)'
  47. $(RM) $(DESTDIR)$(includedir)/libcharset.h
  48. $(RM) $(DESTDIR)$(includedir)/localcharset.h
  49. check : force
  50. cd lib && $(MAKE) check
  51. mostlyclean : force
  52. cd lib && $(MAKE) mostlyclean
  53. clean : force
  54. cd lib && $(MAKE) clean
  55. distclean : force
  56. cd lib && if test -f Makefile; then $(MAKE) distclean; fi
  57. $(RM) include/libcharset.h include/localcharset.h include/localcharset.h.inst
  58. $(RM) config.status config.log config.cache Makefile config.h libtool
  59. maintainer-clean : force
  60. cd lib && if test -f Makefile; then $(MAKE) maintainer-clean; fi
  61. $(RM) include/libcharset.h include/localcharset.h include/localcharset.h.inst
  62. $(RM) config.status config.log config.cache Makefile config.h libtool
  63. force :