-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathautogen.sh
More file actions
executable file
·31 lines (28 loc) · 946 Bytes
/
autogen.sh
File metadata and controls
executable file
·31 lines (28 loc) · 946 Bytes
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
#!/bin/sh
# Script used to generate configure script from directives.
echo "== Generate sources =="
echo "Generates read/write routines for nDimensional arrays."
config/scripts/autogen_low_level.py
echo "Generate the group level module."
config/scripts/autogen_module.py
echo "Generate the group level subroutines & Makefile.am."
config/scripts/autogen_subroutines.py
echo "Generate the utils subroutines & Makefile.am."
config/scripts/autogen_utils.py
echo "Generate the group level tests."
config/scripts/autogen_tests.py
echo
echo "== Generate documentations =="
echo "Use ROBODoc."
robodoc --rc config/robodoc/robodoc-f90.rc > robodoc.log 2>&1
echo
echo "== Generate build system =="
echo "Listing known macro with 'aclocal'."
aclocal -I config/m4
echo "Prepare package to use libtool."
libtoolize
echo "Creating configure script with 'autoconf'."
autoconf
echo "Creating required files for autotools."
automake --add-missing --copy
echo