From: Sebastian B. <sb...@us...> - 2013-12-24 08:59:54
|
Update of /cvsroot/simplemail/simplemail/tests In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv29046/tests Modified Files: makefile Log Message: Made a further temp target. Index: makefile =================================================================== RCS file: /cvsroot/simplemail/simplemail/tests/makefile,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- makefile 24 Dec 2013 08:59:37 -0000 1.27 +++ makefile 24 Dec 2013 08:59:52 -0000 1.28 @@ -121,8 +121,10 @@ $(DOVECOT_TGZ): wget -N $(DOVECOT_URL) -.PHONY: dovecot -dovecot: $(DOVECOT_TGZ) +$(DOVECOT_DIR)-root: $(DOVECOT_TGZ) rm -Rf $(DOVECOT_DIR) tar -xzf $(DOVECOT_TGZ) - cd $(DOVECOT_DIR); ./configure --prefix=$(shell pwd)/$(DOVECOT_DIR)-root; $(MAKE) ; $(MAKE) install \ No newline at end of file + cd $(DOVECOT_DIR); ./configure --prefix=$(shell pwd)/$(DOVECOT_DIR)-root; $(MAKE) ; $(MAKE) install + +.PHONY: dovecot +dovecot: $(DOVECOT_DIR)-root |