GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
CC = gcc TOPDIR = /usb/carat CFLAGS = -g -fwritable-strings -DDIAG1 OBJFLAGS = -c INCL = $(TOPDIR)/include AR = ar rvuc $(TOPDIR)/lib/functions.a GLOBAL = -DTOPDIR=\"$(TOPDIR)\" -DTABLES=\"$(TOPDIR)/tables/\" \ -DATOMS=\"$(TOPDIR)/tables/atoms/\" \ -DTABLEDIM=\"$(TOPDIR)/tables/dim\" COMP = $(CC) $(CFLAGS) $(OBJFLAGS) $(GLOBAL) -I$(INCL) OBJS = orb_division.o\ orbit_alg.o\ orbit_subdivision.o\ row_spin.o .c.o: $(COMP) $< -o $@ ALL: $(OBJS) $(AR) *.o clean: rm -f *.o strip: strip *.o