| 1 | # Include Makefile for rrd graphing | 
 
 
 
 
 | 2 | # $Id$ | 
 
 
 
 
 | 3 |  | 
 
 
 
 
 | 4 | ## Rule to CVS update the files | 
 
 
 
 
 | 5 | .PHONY : update | 
 
 
 
 
 | 6 | update : | 
 
 
 
 
 | 7 | $(CVS) -q -d $(CVSROOT) update | 
 
 
 
 
 | 8 |  | 
 
 
 
 
 | 9 | .PHONY : DOCOPY | 
 
 
 
 
 | 10 | DOCOPY : $(COPYCHECK) | 
 
 
 
 
 | 11 |  | 
 
 
 
 
 | 12 | $(COPYCHECK) : $(FILES) | 
 
 
 
 
 | 13 | cp $(FILES) `perl -e '$$root="$(SOURCEROOT)";$$path=\`pwd\`;$$path=~s/^$$root($$1)/$$1/;print "$(BUILD)".$$path;'` | 
 
 
 
 
 | 14 | @touch $(COPYCHECK) | 
 
 
 
 
 | 15 |  | 
 
 
 
 
 | 16 | .PHONY : DOCLEAN | 
 
 
 
 
 | 17 | DOCLEAN : | 
 
 
 
 
 | 18 | rm -f $(COPYCHECK) | 
 
 
 
 
 | 19 |  | 
 
 
 
 
 | 20 | $(MCOMPILECHECK) : | 
 
 
 
 
 | 21 | cd $(SOURCEROOT) && $(MAKE) build | 
 
 
 
 
 | 22 |  | 
 
 
 
 
 | 23 | $(CHANGELOG) : | 
 
 
 
 
 | 24 | cd $(SOURCEROOT) && $(MAKE) mkchangelog |