Edit

kc3-lang/automake/libraries.am

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-01-02 02:20:18
    Hash : 3aba9acd
    Message : Many changes from Franc,ois

  • libraries.am
  • install-@DIR@LIBRARIES: $(@DIR@_LIBFILES)
    	$(topsrcdir)/mkinstalldirs $(@DIR@dir)
    	for p in $(@DIR@_LIBFILES); do		\
    	  if test -f $$p; then			\
    	    $(INSTALL_DATA) $$p $(@DIR@dir)/$$p; \
    ## Must ranlib after installing because mod time changes. \
    	    $(RANLIB) $(@DIR@dir)/$$p;		\
    	  else :; fi;				\
    	done
    
    uninstall-@DIR@LIBRARIES:
    	for p in $(@DIR@_LIBFILES); do		\
    	  rm -f $(@DIR@dir)/$$p;		\
    	done