File: autogen.sh

package info (click to toggle)
libpcre%2B%2B 0.9.5-6
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,032 kB
  • ctags: 194
  • sloc: sh: 6,870; cpp: 835; makefile: 41
file content (22 lines) | stat: -rwxr-xr-x 431 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
set -x

find . -name Makefile -exec rm {} \;
find . -name "*~"     -exec rm {} \;
find . -name config.h -exec rm {} \;
find . -name stamp.h  -exec rm {} \;
find . -name .deps    -exec rm -rf {} \;
find . -name .libs    -exec rm -rf {} \;

rm -rf config.cache config.status config.log pcre++-config *~

aclocal
autoheader
autoconf2.50
automake -a

doxygen doc/.doxygen

cd doc
    rm -f Pcre.3
    ln -s man/man3/Pcre.3 .