diff options
author | Brian Cully <bjc@kublai.com> | 2008-04-14 21:54:00 -0400 |
---|---|---|
committer | Brian Cully <github.20.shmit@spamgourmet.com> | 2008-04-14 21:54:00 -0400 |
commit | 79d65188b1c1578a36403c0e5756c81dcc93d816 (patch) | |
tree | 2903ed400cd0ebd13350397d402c1d9d5b9f869d /tools | |
parent | 6ba98a9f9f48e13738d9736cba9c45b5e94f42f2 (diff) | |
download | nastd-79d65188b1c1578a36403c0e5756c81dcc93d816.tar.gz nastd-79d65188b1c1578a36403c0e5756c81dcc93d816.zip |
Remove svn files
Diffstat (limited to 'tools')
-rw-r--r-- | tools/.svn/README.txt | 2 | ||||
-rw-r--r-- | tools/.svn/empty-file | 0 | ||||
-rw-r--r-- | tools/.svn/entries | 22 | ||||
-rw-r--r-- | tools/.svn/format | 1 | ||||
-rw-r--r-- | tools/.svn/prop-base/build.svn-base | 5 | ||||
-rw-r--r-- | tools/.svn/props/build.svn-work | 5 | ||||
-rw-r--r-- | tools/.svn/text-base/build.svn-base | 53 |
7 files changed, 0 insertions, 88 deletions
diff --git a/tools/.svn/README.txt b/tools/.svn/README.txt deleted file mode 100644 index 271a8ce..0000000 --- a/tools/.svn/README.txt +++ /dev/null @@ -1,2 +0,0 @@ -This is a Subversion working copy administrative directory. -Visit http://subversion.tigris.org/ for more information. diff --git a/tools/.svn/empty-file b/tools/.svn/empty-file deleted file mode 100644 index e69de29..0000000 --- a/tools/.svn/empty-file +++ /dev/null diff --git a/tools/.svn/entries b/tools/.svn/entries deleted file mode 100644 index af4e06f..0000000 --- a/tools/.svn/entries +++ /dev/null @@ -1,22 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<wc-entries - xmlns="svn:"> -<entry - committed-rev="1" - name="" - committed-date="2005-12-08T17:32:07.572093Z" - url="svn+ssh://coleridge/svn/nastd/trunk/tools" - last-author="bjc" - kind="dir" - uuid="2641c99b-6c07-0410-920d-927397d2d5d0" - revision="8"/> -<entry - committed-rev="1" - name="build" - text-time="2005-12-24T00:00:41.000000Z" - committed-date="2005-12-08T17:32:07.572093Z" - checksum="d0ede51e29bdfbd13a756fcd152bf8bd" - last-author="bjc" - kind="file" - prop-time="2005-12-24T00:00:41.000000Z"/> -</wc-entries> diff --git a/tools/.svn/format b/tools/.svn/format deleted file mode 100644 index b8626c4..0000000 --- a/tools/.svn/format +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/tools/.svn/prop-base/build.svn-base b/tools/.svn/prop-base/build.svn-base deleted file mode 100644 index a669705..0000000 --- a/tools/.svn/prop-base/build.svn-base +++ /dev/null @@ -1,5 +0,0 @@ -K 14 -svn:executable -V 0 - -END diff --git a/tools/.svn/props/build.svn-work b/tools/.svn/props/build.svn-work deleted file mode 100644 index a669705..0000000 --- a/tools/.svn/props/build.svn-work +++ /dev/null @@ -1,5 +0,0 @@ -K 14 -svn:executable -V 0 - -END diff --git a/tools/.svn/text-base/build.svn-base b/tools/.svn/text-base/build.svn-base deleted file mode 100644 index 7a374f0..0000000 --- a/tools/.svn/text-base/build.svn-base +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh -# -# $Id: build,v 1.1.1.1 2000/02/16 23:32:47 shmit Exp $ - -os=`uname -s` -rev=`uname -r` -rev_major=`echo $rev | cut -d. -f1` - -case $os in -FreeBSD) - if [ $rev_major -ge 3 ]; then - target=freebsd - else - target=freebsd2 - fi - ;; -Linux) - target=linux - ;; -SunOS) - if [ $rev_major -ge 5 ]; then - target=solaris - else - target=sunos - fi - ;; -*) - echo "I don't know how to build for your platform, please poke" 1>&2 - echo "around in Makefiles/os and tools/build to get the server" 1>&2 - echo "to work on your platform." 1>&2 - exit 1 - ;; -esac - -# Figure out which make to use. -make=$1 && shift 1 - -# Clobber the target makefile if the target of the build is the Makefile. -if [ "$1" = "target" ]; then - rm -f Makefiles/os/target - echo "Setting build target to $target." - ln -s $target Makefiles/os/target && exit 0 - exit 1 -fi - -# Make sure the OS Makefile is in place. -if [ ! -f Makefiles/os/target ]; then - echo "Setting build target to $target." - ln -s $target Makefiles/os/target || exit 1 -fi - -# Now build the target. -$make MAKE=$make -f Makefiles/build $* |