1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
#############################################################################
#
#
# patternstextbinary.txt
#
# These are patterns to classify files in a checked out GAP root
# directory which are either to be shipped with the main archive
# or in the tools archive into text files and binary files.
# Lines starting with # are ignored, lines starting with T are
# patterns for text files, lines starting with B are patterns
# for binary files. The first match decides about the type.
#
# *** DIRECTORIES CONTANING ONLY TEXT FILES (IN ALPHABETICAL ORDER) ***
#
Tlib/*
Tsmall/*
Tsrc/*
#
# *** TEXT FILES ***
#
T*CHANGES*
TCOPYING
Tgap.ini
TGPL
TINSTALL
TLICENSE
T*README*
TTODO
TVERSION
#
# extensions pointing out that the file is text, in alphabetical order
#
T*.bat
T*.bib
T*.c
T*.css
T*.g
T*.gap
T*.gd
T*.gi
T*.grp
T*.h
T*.htm
T*.html
T*.msk
T*.tex
T*.tom
T*.tst
T*.txt
T*.xml
#
# *** BINARY FILES ***
#
B*configure*
B*Makefile*
Bcnf/*
#
# extensions pointing out that the file is binary, in alphabetical order
#
B*.bmp
B*.bz2
B*.dll
B*.dvi
B*.exe
B*.gz
B*.ico
B*.jpg
B*.js
B*.m4
B*.pif
B*.pdf
B*.ps
B*.sh
B*.shi
B*.six
B*.tar
B*.tgz
B*.zip
|