GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
# sample makefile
CC=cc
all: src/Makefile.in
mkdir -p bin/x86_64-pc-linux-gnu-gcc-default64;
sed -e "s/@DATE@/`date`/g" src/Makefile.in >src/Makefile
(cd src; make)
mv src/ace bin/x86_64-pc-linux-gnu-gcc-default64/ace
clean:
rm -rf bin src/Makefile Makefile
# use this target only if you want to build the manual from scratch.
doc:
(cd doc;./make_doc)
otherdoc:
(cd standalone-doc;latex ace3001;bibtex ace3001;latex ace3001;latex ace3001)
(cd standalone-doc;dvips ace3001 -o)
(cd standalone-doc;rm ace3001.{toc,blg,log,aux})
Makefile: configure Makefile.in
./configure "../.."
.PHONY: all clean doc otherdoc