1 ## File to include in other Makefile's, defining common commands and rules
7 for file in $(VERSIONED_FILES); do \
8 sed 's/\@VERSION\@/${VERSION}/' $$file > $$file.new; \
10 mv $$file.new $$file; \
15 @if [ ! -r $(srcdir)/$@ ] ; \
17 echo "Creating empty file for $@"; \
20 @if diff $< $(srcdir)/$@ > /dev/null 2>&1; \
26 cp $(srcdir)/$< $(srcdir)/$@; \