From: Sebastian B. <sb...@us...> - 2013-12-24 08:59:21
|
Update of /cvsroot/simplemail/simplemail/tests In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28987/tests Modified Files: makefile Log Message: Begin work on dovecot part. Index: makefile =================================================================== RCS file: /cvsroot/simplemail/simplemail/tests/makefile,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- makefile 24 Dec 2013 08:56:21 -0000 1.25 +++ makefile 24 Dec 2013 08:59:19 -0000 1.26 @@ -111,3 +111,17 @@ .PHONY: clean clean: -rm -Rf test-objs $(TESTEXES) $(addsuffix .o,$(TESTEXES)) + + +# Dovecot support +DOVECOT_URL=http://www.dovecot.org/releases/2.2/dovecot-2.2.9.tar.gz +DOVECOT_TGZ=$(notdir $(DOVECOT_URL)) +DOVECOT_DIR=$(DOVECOT_TGZ:%.tar.gz=%) + +$(DOVECOT_TGZ): + wget -N $(DOVECOT_URL) + +.PHONY: dovecot +dovecot: $(DOVECOT_TGZ) + rm -Rf $(DOVECOT_DIR) + tar -xzf $(DOVECOT_TGZ) |