michael@0: #!/bin/sh michael@0: # michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: # ----------------------------------------------------------------- michael@0: # symlinks.sh -- create links from NSPR builds michael@0: # michael@0: # syntax: symlinks.sh michael@0: # michael@0: # Description: michael@0: # symlinks.sh creates some symbolic links for NSPR build targets michael@0: # that are not actually build, but for which there are NSPR michael@0: # binaries suitable for running on the intended target. ... got michael@0: # that? michael@0: # michael@0: # Suggested use: After copying NSPR binaries to michael@0: # /s/b/c/nspr20/ run symlinks.sh to create the links michael@0: # for all supported platforms. michael@0: # michael@0: # The symlinks in this script correspond to the NSPR 4.1.1 michael@0: # release. Adjust as necessary. michael@0: # michael@0: # ----------------------------------------------------------------- michael@0: michael@0: ln -s SunOS5.6_DBG.OBJ SunOS5.7_DBG.OBJ michael@0: ln -s SunOS5.6_OPT.OBJ SunOS5.7_OPT.OBJ michael@0: michael@0: ln -s SunOS5.6_DBG.OBJ SunOS5.8_DBG.OBJ michael@0: ln -s SunOS5.6_OPT.OBJ SunOS5.8_OPT.OBJ michael@0: michael@0: ln -s SunOS5.7_64_DBG.OBJ SunOS5.8_64_DBG.OBJ michael@0: ln -s SunOS5.7_64_OPT.OBJ SunOS5.8_64_OPT.OBJ michael@0: michael@0: ln -s OSF1V4.0D_DBG.OBJ OSF1V5.0_DBG.OBJ michael@0: ln -s OSF1V4.0D_OPT.OBJ OSF1V5.0_OPT.OBJ michael@0: michael@0: ln -s WINNT4.0_DBG.OBJ WINNT5.0_DBG.OBJ michael@0: ln -s WINNT4.0_DBG.OBJD WINNT5.0_DBG.OBJD michael@0: ln -s WINNT4.0_OPT.OBJ WINNT5.0_OPT.OBJ michael@0: # --- end symlinks.sh --------------------------------------------- michael@0: