blob: 9d51d97729770175b44a73e782119da5f5c89ed5 (
plain)
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
|
#! /bin/sh
error() {
echo "$1"
exit 1
}
# set -x
notangle ./configure.ac.pamphlet > ./tmp-configure.ac \
|| error "could not extract configure.ac from pamphlet file"
config/move-if-change tmp-configure.ac configure.ac
autoheader || error "could not re-generate config/openaxiom-c-macros.h"
autoconf || error "could not re-generate configure"
## subdirectories that contain Makefile pamphlets of interest
SUBDIRS=" . \
src \
src/interp \
src/algebra \
src/input \
"
for d in $SUBDIRS; do
notangle -t8 $d/Makefile.pamphlet > $d/tmp-Makefile.in \
|| error "could not extract $d/Makefile.in from pamphlet file"
config/move-if-change $d/tmp-Makefile.in $d/Makefile.in
done
# set +x
|