Hash :
de7f3eaa
Author :
Date :
1995-11-22T07:38:48
(dist): Don't link a file that has already been linked
distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
dist: $(DIST_FILES)
@for file in $(DIST_FILES); do \
test -f $(distdir)/$$file || { \
echo linking $$file; \
ln $(srcdir)/$$file $(distdir)/$$file; \
} || { \
echo copying $$file instead; \
cp -p $(srcdir)/$$file $(distdir)/$$file; \
}; \
done