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
#############################################################################
2
#
3
# $Id$
4
#
5
# patternscolor.txt
6
#
7
# These are patterns to classify files in a checked out GAP root
8
# directory according to whether they are shipped with the main
9
# archive, with the tools archive or not at all.
10
# Lines starting with # are ignored, lines starting with - are
11
# patterns for files not to be shipped, lines starting with +
12
# are patterns files to be shipped with the main archive and
13
# lines starting with a T are patterns for files to be shipped
14
# with the tools archive. The first match decides about the class.
15
#
16
# some problematic files which we need:
17
# (in particular there are files with extension .o and .a)
18
# files and directories we never include
19
-*.o
20
-*.cvsignore*
21
-*CVS/*
22
-*.git/*
23
# excluded directories
24
-bin/*
25
-gap/*
26
-htm/*
27
# included directories
28
+doc/*
29
+lib/*
30
+tst/*
31
# individual files
32
+CHANGES
33
+GPL
34
+README
35
+configure
36
+Makefile.in
37
+*.g
38
+src/hello.c
39
# the rest is excluded
40
-*
41
42