build: Remove now-defunct jam commands.

This commit is contained in:
Augustin Cavalier
2017-11-25 21:15:10 +01:00
parent 5f8613a22c
commit 08965a6568
2 changed files with 0 additions and 87 deletions
-28
View File
@@ -74,13 +74,6 @@ rule ProcessCommandLineArguments
Echo " mount - Mount the Haiku image in the"
" bfs_shell." ;
Echo ;
Echo "Package upload to (git.haiku-os.org/hpkg-upload):" ;
Echo " jam upload-packages <packages ...> " ;
Echo ;
Echo "Remote repository creation (for testing a set of"
" packages):" ;
Echo " jam build-remote-test-repository <packages ...> " ;
Echo ;
Echo "For more details on how to customize Haiku builds read" ;
Echo "build/jam/UserBuildConfig.ReadMe." ;
Exit ;
@@ -97,27 +90,6 @@ rule ProcessCommandLineArguments
}
}
# Copy the given set of local package files to the git repository
# server, where they will be used for creating a new repository
# during the push hook.
case upload-packages : {
UploadPackages $(JAM_TARGETS[1]) : $(JAM_TARGETS[2-]) ;
JAM_TARGETS = $(JAM_TARGETS[1]) ;
NotFile $(JAM_TARGETS) ;
Always $(JAM_TARGETS) ;
}
# Copy the given set of local package files to the remote repository
# and create a new version of that remote repository (useful for
# testing the package repository before pushing).
case build-remote-test-repository : {
BuildRemoteHaikuPortsRepository $(JAM_TARGETS[1])
: $(JAM_TARGETS[2-]) ;
JAM_TARGETS = $(JAM_TARGETS[1]) ;
NotFile $(JAM_TARGETS) ;
Always $(JAM_TARGETS) ;
}
# A target starting with "@" is a build profile.
case @* : {
HAIKU_BUILD_PROFILE = [ Match "@(.*)" : $(JAM_TARGETS[1]) ] ;