Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

open-axiom repository from github

Project: OpenAxiom
Views: 15697
1
#! /bin/sh
2
3
error() {
4
echo "$1"
5
exit 1
6
}
7
8
# set -x
9
10
rm -rf autom4te.cache
11
autoheader || error "could not re-generate config/openaxiom-c-macros.h"
12
aclocal -I config
13
autoconf || error "could not re-generate configure"
14
automake -a -c #--force-missing
15
rm -rf autom4te.cache
16
17
# set +x
18
19