2008-01-17 00:47:23 +01:00
|
|
|
#
|
|
|
|
# This makefile is a secondary way of installing SilverStripe.
|
|
|
|
# It is used for things like continuous integration
|
|
|
|
#
|
|
|
|
# Most users should simply visit the site root in your web browser.
|
|
|
|
#
|
|
|
|
|
2008-11-22 04:36:31 +01:00
|
|
|
test:
|
2008-01-17 00:47:23 +01:00
|
|
|
$(MAKE) -C sapphire test
|
2009-10-26 22:26:00 +01:00
|
|
|
|
|
|
|
getallmodules:
|
|
|
|
if [ -d subsites ]; then svn update subsites; else svn co http://svn.silverstripe.com/open/modules/subsites/trunk subsites; fi
|
|
|
|
if [ -d genericdataadmin ]; then svn update genericdataadmin; else svn co http://svn.silverstripe.com/open/modules/genericdataadmin/trunk genericdataadmin; fi
|
|
|
|
if [ -d forum ]; then svn update forum; else svn co http://svn.silverstripe.com/open/modules/forum/trunk forum; fi
|
|
|
|
if [ -d cmsworkflow ]; then svn update cmsworkflow; else svn co http://svn.silverstripe.com/open/modules/cmsworkflow/trunk cmsworkflow; fi
|
|
|
|
if [ -d multiform ]; then svn update multiform; else svn co http://svn.silverstripe.com/open/modules/multiform/trunk multiform; fi
|
|
|
|
if [ -d events ]; then svn update events; else svn co http://svn.silverstripe.com/open/modules/events/trunk events; fi
|
|
|
|
if [ -d auth_openid ]; then svn update auth_openid; else svn co http://svn.silverstripe.com/open/modules/auth_openid/trunk auth_openid; fi
|
|
|
|
if [ -d blog ]; then svn update blog; else svn co http://svn.silverstripe.com/open/modules/blog/trunk blog; fi
|
|
|
|
if [ -d gallery ]; then svn update gallery; else svn co http://svn.silverstripe.com/open/modules/gallery/trunk gallery; fi
|
|
|
|
if [ -d rssaggregator ]; then svn update rssaggregator; else svn co http://svn.silverstripe.com/open/modules/rssaggregator/trunk rssaggregator; fi
|
|
|
|
if [ -d sharethis ]; then svn update sharethis; else svn co http://svn.silverstripe.com/open/modules/sharethis/trunk sharethis; fi
|
2009-10-26 22:26:40 +01:00
|
|
|
if [ -d userforms ]; then svn update userforms; else svn co http://svn.silverstripe.com/open/modules/userforms/trunk userforms; fi
|