Skip to content
Snippets Groups Projects
makefile 272 B
Newer Older
  • Learn to ignore specific revisions
  • Stuart Gathman's avatar
    Stuart Gathman committed
    web:
    	doxygen
    	rsync -ravK doc/html/ spidey2.bmsi.com:/Public/pymilter
    
    Stuart Gathman's avatar
    Stuart Gathman committed
    
    
    Stuart Gathman's avatar
    Stuart Gathman committed
    VERSION=0.9.6
    CVSTAG=pymilter-0_9_6
    
    Stuart Gathman's avatar
    Stuart Gathman committed
    PKG=pymilter-$(VERSION)
    SRCTAR=$(PKG).tar.gz
    
    $(SRCTAR):
    	cvs export -r$(CVSTAG) -d $(PKG) pymilter
    	tar cvfz $(PKG).tar.gz $(PKG)
    	rm -r $(PKG)
    
    cvstar: $(SRCTAR)