File: generateBuildFiles.sh

package info (click to toggle)
openmama 2.2.2.1-10
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 32,064 kB
  • ctags: 34,353
  • sloc: cpp: 86,630; ansic: 78,639; java: 45,677; cs: 40,365; sh: 8,894; makefile: 1,397; python: 654; xml: 509; lex: 222
file content (51 lines) | stat: -rwxr-xr-x 601 bytes parent folder | download | duplicates (2)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51

# COMMON
cd common/c_cpp
rm -rf autom4te.cache etc
mkdir etc
libtoolize -c -f
cp -f ltmain.sh etc/
aclocal
autoheader
autoconf
automake -ca -f
cd -

# MAMA C/CPP
cd mama/c_cpp

rm -rf autom4te.cache etc
mkdir etc
libtoolize -c -f
cp -f ltmain.sh etc/
aclocal
autoheader
autoconf
automake -ca -f
cd -

# MAMA JNI
cd mama/jni

rm -rf autom4te.cache etc
mkdir etc
libtoolize -c -f
cp -f ltmain.sh etc/
aclocal
autoheader
autoconf
automake -ca -f
cd -

# MAMDA CPP
cd mamda/c_cpp

rm -rf autom4te.cache etc
mkdir etc
libtoolize -c -f
cp -f ltmain.sh etc/
aclocal
autoheader
autoconf
automake -ca -f
cd -