File: autogen.sh

package info (click to toggle)
libofx 1%3A0.10.9-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,644 kB
  • sloc: cpp: 8,101; ansic: 2,298; xml: 265; makefile: 224; sh: 43
file content (23 lines) | stat: -rwxr-xr-x 537 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
set -e
echo "Running mkdir -p config"
mkdir -p config
if command -v glibtoolize
then
	LIBTOOLIZE=glibtoolize
else
	LIBTOOLIZE=libtoolize
fi
echo "Running ${LIBTOOLIZE} --force"
${LIBTOOLIZE} --force
echo "Running aclocal"
aclocal -I ./m4
echo "Running autoheader"
autoheader
echo "Running automake -a"
automake -a
echo "Running autoconf"
autoconf
echo "You can now run ./configure  $conf_flags $@ (potentially in a separate build directory)"
#./configure $conf_flags "$@"