Edit

kc3-lang/automake/libraries.am

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1995-12-05 09:13:40
    Hash : f5e39234
    Message : Finished uniform naming scheme

  • libraries.am
  • install-@DIR@LIBRARIES: $(@DIR@_LIBFILES)
    	$(topsrcdir)/mkinstalldirs $(@DIR@dir)
    	for p in $(@DIR@_LIBFILES); do		\
    	  $(INSTALL_DATA) $$p $(@DIR@dir)/$$p;	\
    	  $(RANLIB) $(@DIR@dir)/$$p;		\
    	done
    
    uninstall-@DIR@LIBRARIES:
    	for p in $(@DIR@_LIBFILES); do		\
    	  rm -f $(@DIR@dir)/$$p;		\
    	done
    
    mostlyclean-@DIR@LIBRARIES:
    
    clean-@DIR@LIBRARIES:
    	rm -f $(@DIR@_LIBFILES)
    
    distclean-@DIR@LIBRARIES:
    
    maintainer-clean-@DIR@LIBRARIES: