Edit

thodg/libiconv/preload/Makefile.devel

Branch :

  • Show log

    Commit

  • Author : Bruno Haible
    Date : 2016-12-03 18:42:27
    Hash : cc98b82c
    Message : Make Makefile.devel more useful for the users of the released tarball.

  • preload/Makefile.devel
  • # This is the developer's makefile, not the user's makefile.
    # Don't use it unless you know exactly what you do!
    
    SHELL = /bin/sh
    MAKE = make
    AUTOCONF = autoconf-2.69
    ACLOCAL = aclocal-1.15
    CP = cp
    RM = rm -f
    
    all : configures
    
    aclocal.m4 : $(wildcard ../m4/*.m4)
    	$(ACLOCAL) -I ../m4 -I ../srcm4 --output=$@
    
    configures : configure
    
    configure : configure.ac aclocal.m4
    	$(AUTOCONF)
    
    totally-clean : all
    	rm -f aclocal.m4 configure
    
    force :