~ryanaxp/posixrdp/devel

1 by Ryan Rafferty
initial import from the CVS repository on sourceforge.net
1
#!/bin/sh
2
3
which autoconf
4
if ! test $? -eq 0
5
then
6
  echo "error, install autoconf"
7
  exit 1
8
fi
9
10
which automake
11
if ! test $? -eq 0
12
then
13
  echo "error, install automake"
14
  exit 1
15
fi
16
17
which libtool
18
if ! test $? -eq 0
19
then
20
  echo "error, install libtool"
21
  exit 1
22
fi
23
24
touch configure.ac
25
touch NEWS
26
touch AUTHORS
27
touch README
28
touch ChangeLog
29
ln -s ../config.c $PWD/sesman/tools/config.c
30
autoreconf -fvi