GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
CC = gcc TOPDIR = /usb/carat CFLAGS = -fwritable-strings -DDIAG1 -g 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) -c $(GLOBAL) -I$(INCL) OBJS = coboundary.o\ cong_solve.o\ convert_cocycle_to_column.o\ convert_to_cozycle.o\ put_cocycle.o\ reget_gen.o\ reverse_valuation.o\ normalop.o\ zass.o .c.o: $(COMP) $< -o $@ ALL: $(OBJS) $(AR) *.o clean: rm -f *.o strip: strip *.o