summaryrefslogtreecommitdiff
path: root/netware/BUILD/compile-netware-src
blob: f4e8a53ffea3899edb6a66d724f7274e9a00b511 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#! /bin/sh                   

# debug
#set -x

# stop on errors
set -e

if test ! -r ./sql/mysqld.cc
then
  echo "you must start from the top source directory"
  exit 1
fi

path=`dirname $0`

# clean
if test -e "Makefile"; then
	make -k clean;
	make -k distclean;
fi

# remove other files
rm -f */.deps/*.P
rm -rf Makefile.in.bk

# zip source
files=`pwd | sed -e "s/.*\\\(mysql-.*\)/\1/"`
file=`pwd | sed -e "s/.*\\mysql-\(.*\)/mysql-src-\1-pc-netware-i686/"`
cd ..
if test -e "$file.zip"; then rm -f $file.zip; fi
zip -r $file.zip $files -x \*.zip -x \*.tar.gz
if test -e "./$files/$file.zip"; then mv -f ./$files/$file.zip ./$files/$file.zip.old; fi
mv -f $file.zip ./$files/$file.zip