CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

| Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

Views: 418346
1
#! /bin/sh
2
## Set up the autotools build system.
3
## This script is only necessary when Normaliz is checked out from git.
4
## A distribution made using "make distcheck" will contain the complete
5
## build system already, so it is ready for "./configure && make && make install".
6
autoreconf -i --force
7
echo "Now you can do:"
8
echo " ./configure && make && make install"
9
10