Edit

thodg/libiconv/man/Makefile.os2

Branch :

  • Show log

    Commit

  • Author : Bruno Haible
    Date : 2000-07-04 14:48:49
    Hash : 84b6a3e8
    Message : Support for OS/2 using emx+gcc.

  • man/Makefile.os2
  • # Makefile for libiconv/man, OS2/EMX specific
    #
    #	requires EMX/GCC developpment environment and
    #	GNU futils installed
    #
    #	define EMXPATH=<your EMX path> on install/uninstall
    #
    
    #### Start of system configuration section. ####
    
    # Directories used by "make install":
    prefix = @prefix@
    exec_prefix = $(prefix)
    mandir = $(prefix)/man
    
    #### End of system configuration section. ####
    
    MAN = iconv.3 iconv_close.3 iconv_open.3
    
    all :
    
    install : force
    	@for %i in ($(MAN)) do cp -i %i $(mandir)/man3/%i
    
    installdirs :
    
    uninstall : force
    	@for %i in ($(MAN)) do rm -i $(mandir)/man3/%i
    
    check :
    
    mostlyclean :
    
    clean :
    
    distclean : force
    	rm -f Makefile
    
    maintainer-clean : distclean
    
    force :