annotate .hgignore @ 230:1a3674836579

Provide flags for just-in-time compilation * src/configure.ac: add inst/private/get_vars.m as configured file * inst/private/get_vars.m.in: a function returning proper compiler or linker flags * inst/provate/generate_makefile.m: use flags * src/Makefile.in: add get_vars.m in the cleanall recipe
author Eugenio Gianniti <eugenio.gianniti@mail.polimi.it>
date Fri, 13 Jun 2014 18:45:40 +0200
parents ab837739eefb
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
176
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
1 syntax: regexp
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
2 # The recurrent (^|/) idiom in the regexps below should be understood
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
3 # to mean "at any directory" while the ^ idiom means "from the
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
4 # project's top-level directory".
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
5
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
6 (^|/).*\.dvi$
200
ab837739eefb Ignore some Latex output.
gedeone-octave <marcovass89@hotmail.it>
parents: 176
diff changeset
7 (^|/).*\.backup$
ab837739eefb Ignore some Latex output.
gedeone-octave <marcovass89@hotmail.it>
parents: 176
diff changeset
8 (^|/).*\.aux$
ab837739eefb Ignore some Latex output.
gedeone-octave <marcovass89@hotmail.it>
parents: 176
diff changeset
9 (^|/).*\.bbl$
ab837739eefb Ignore some Latex output.
gedeone-octave <marcovass89@hotmail.it>
parents: 176
diff changeset
10 (^|/).*\.blg$
ab837739eefb Ignore some Latex output.
gedeone-octave <marcovass89@hotmail.it>
parents: 176
diff changeset
11 (^|/).*\.vtu$
ab837739eefb Ignore some Latex output.
gedeone-octave <marcovass89@hotmail.it>
parents: 176
diff changeset
12 (^|/).*\.pvd$
ab837739eefb Ignore some Latex output.
gedeone-octave <marcovass89@hotmail.it>
parents: 176
diff changeset
13 (^|/).*\.log$
ab837739eefb Ignore some Latex output.
gedeone-octave <marcovass89@hotmail.it>
parents: 176
diff changeset
14 (^|/).*\.out$
ab837739eefb Ignore some Latex output.
gedeone-octave <marcovass89@hotmail.it>
parents: 176
diff changeset
15 (^|/).*\.toc$
176
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
16 (^|/).*\.pdf$
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
17 (^|/).*\.o$
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
18 (^|/).*\.oct$
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
19 (^|/).*\.octlink$
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
20 (^|/)octave-core$
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
21 (^|/).*\.tar\.gz$
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
22
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
23 (^|/)aclocal\.m4$
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
24 (^|/)configure$
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
25 (^|/)autom4te\.cache($|/)
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
26
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
27 # e.g. doc/faq/OctaveFAQ.info
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
28 # doc/interpreter/octave.info-4
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
29 ^doc/.*\.info(-\d)?$
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
30
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
31 ^doc/\w*/stamp-vti$
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
32 ^doc/\w*/version\.texi$
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
33
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
34 # Emacs tools create these
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
35 (^|/)TAGS$
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
36 (^|/)semantic.cache$
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
37
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
38 # Other text editors often create these
32a023fc678a maint: add hgignore file
Carnë Draug <carandraug@octave.org>
parents:
diff changeset
39 (^|/)~.*