#!/bin/sh - # DBSQL - A SQL database engine. # # Copyright (C) 2007 The DBSQL Group, Inc. - All rights reserved. # # This library is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # There are special exceptions to the terms and conditions of the GPL as it # is applied to this software. View the full text of the exception in file # LICENSE_EXCEPTIONS in the directory of this software distribution. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # $Id: s_symlink 7 2007-02-03 13:34:17Z gburd $ echo 'Creating DBSQL source tree symbolic links...' build() { #echo " $1 -> $2" (cd ../`dirname $1` && rm -f `basename $1` && ln -s $2 `basename $1`) } build src/tags ../dist/tags build src/os/tags ../../dist/tags build src/clib/tags ../../dist/tags build src/py/tags ../../dist/tags build test/scr050/tags ../../dist/tags build build_unix/tags ../dist/tags build src/TAGS ../dist/TAGS build src/os/TAGS ../../dist/TAGS build src/clib/TAGS ../../dist/TAGS build src/py/TAGS ../../dist/TAGS build test/scr050/TAGS ../../dist/tags build build_unix/TAGS ../dist/TAGS