~ubuntu-branches/ubuntu/intrepid/comedilib/intrepid

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Bazaar Package Importer
  • Author(s): David Schleef
  • Date: 2004-11-04 11:43:51 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041104114351-a50kaei5yamka8r6
Tags: 0.7.22-2
It helps if the shared library is actually in the package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
if [ ! -f NEWS ] ; then
 
4
        touch NEWS
 
5
fi
 
6
if [ ! -f AUTHORS ] ; then
 
7
        touch AUTHORS
 
8
fi
 
9
if [ ! -f ChangeLog ] ; then
 
10
        touch ChangeLog
 
11
fi
 
12
 
 
13
aclocal -I m4 && \
 
14
libtoolize --copy --force && \
 
15
autoheader && \
 
16
autoconf && \
 
17
automake -a -c 
 
18
 
 
19