File: autogen.sh

package info (click to toggle)
devtodo 0.1.20%2Bgit20200830.0ad52b0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 828 kB
  • sloc: ansic: 5,307; cpp: 3,943; perl: 112; sh: 106; makefile: 45; csh: 2
file content (18 lines) | stat: -rwxr-xr-x 307 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

echo libtoolize
libtoolize --force --automake
#echo gettextize
#gettextize --force --copy --intl
#echo intltoolize
#intltoolize --force --copy
echo aclocal
aclocal
echo automake
automake --add-missing
echo autoconf
autoconf
echo autoheader
autoheader

echo "Now you are ready to run ./configure"