Edit

kc3-lang/automake/dist-subd.am

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1995-12-05 06:16:51
    Hash : 9eb2ffa7
    Message : Many cleanups. Added --strictness option.

  • dist-subd.am
  • distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
    dist: $(DISTFILES)
    	@for file in $(DISTFILES); do		\
    ## See dist-subd-top.am to understand this.
    	  test -f $(distdir)/$$file || {	\
    	    echo linking $$file;		\
    	    ln $(srcdir)/$$file $(distdir)/$$file; \
    	  } || {				\
    	    echo copying $$file instead;	\
    	    cp -p $(srcdir)/$$file $(distdir)/$$file; \
    	  };					\
    	done