Author: bernhard Date: Sat Jan 17 09:37:43 2009 New Revision: 35698 Modified: trunk/config/gen/makefiles/languages.in Log: add target co-tcl Modified: trunk/config/gen/makefiles/languages.in ============================================================================== --- trunk/config/gen/makefiles/languages.in (original) +++ trunk/config/gen/makefiles/languages.in Sat Jan 17 09:37:43 2009 @@ -8,6 +8,7 @@ BUILD_DIR = @build_dir@ RECONFIGURE = $(PERL) @build_dir@/tools/dev/reconfigure.pl GIT = git +SVN = svn # List of languages that are currently managed in the Parrot svn repository # When adding or removing languages, please update the list @@ -64,6 +65,7 @@ @echo "" @echo "Some languages are managed in other repositories." @echo "Here are some helpers for checking these languages out." + @echo "Note that these commands don't guarantee that commits are possible." @echo "" @echo " co-all: Try to fetch externally managed languages" @echo "" @@ -492,7 +494,7 @@ # helpers for checking out externally managed languages # check out all known externally managed languages -co-all: co-eclectus co-hq9plus +co-all: co-eclectus co-hq9plus co-tcl co-eclectus: - $(GIT) clone 'git:////github.com/bschmalhofer/eclectus.git' @@ -500,3 +502,6 @@ co-hq9plus: - $(GIT) clone 'git:////github.com/bschmalhofer/hq9plus.git' +co-tcl: + - $(SVN) checkout 'http:////partcl.googlecode.com/svn/trunk' tcl +