Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

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

563580 views
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 = Q_data.o\
	graph_tools.o\
	normalop_o.o\
	subgroupgraph.o\
	stabs.o\
	orbit_fkts.o\
	coho_size.o\
	lattices.o\
	phi.o\
	graph_mapped_word.o\
	aff_normal.o\
	super-k-groups-fcts.o\
	sub-super-tools.o\
	sub-k-groups-fcts.o\
	is_k_subgroup.o\
	calculate_representatives.o\
	sub-t-groups-fcts.o\
	obergruppenzahl.o

.c.o:
	$(COMP) $< -o $@

ALL:  $(OBJS)
	$(AR) *.o

clean:
	rm -f *.o

strip:
	strip *.o