annotate .hgignore @ 337:a7d4e5107531

dep/animone: REFACTOR ALL THE THINGS 1: animone now has its own syntax divergent from anisthesia, making different platforms actually have their own sections 2: process names in animone are now called `comm' (this will probably break things). this is what its called in bsd/linux so I'm just going to use it everywhere 3: the X11 code now checks for the existence of a UTF-8 window title and passes it if available 4: ANYTHING THATS NOT LINUX IS 100% UNTESTED AND CAN AND WILL BREAK! I still actually need to test the bsd code. to be honest I'm probably going to move all of the bsds into separate files because they're all essentially different operating systems at this point
author Paper <paper@paper.us.eu.org>
date Wed, 19 Jun 2024 12:51:15 -0400
parents 8b174bcde667
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
1 syntax: glob
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
2
245
8b174bcde667 hgignore: don't ignore .app files
Paper <paper@paper.us.eu.org>
parents: 237
diff changeset
3 m4/libtool.m4
8b174bcde667 hgignore: don't ignore .app files
Paper <paper@paper.us.eu.org>
parents: 237
diff changeset
4 m4/lt*.m4
8b174bcde667 hgignore: don't ignore .app files
Paper <paper@paper.us.eu.org>
parents: 237
diff changeset
5 build-aux
8b174bcde667 hgignore: don't ignore .app files
Paper <paper@paper.us.eu.org>
parents: 237
diff changeset
6 aclocal.m4
8b174bcde667 hgignore: don't ignore .app files
Paper <paper@paper.us.eu.org>
parents: 237
diff changeset
7 Makefile.in
8b174bcde667 hgignore: don't ignore .app files
Paper <paper@paper.us.eu.org>
parents: 237
diff changeset
8 configure
8b174bcde667 hgignore: don't ignore .app files
Paper <paper@paper.us.eu.org>
parents: 237
diff changeset
9 *~
8b174bcde667 hgignore: don't ignore .app files
Paper <paper@paper.us.eu.org>
parents: 237
diff changeset
10 autom4te.cache
237
a7d0d543b334 *: make OS X builds succeed
Paper <paper@paper.us.eu.org>
parents: 84
diff changeset
11
84
eab9e623eb84 dep/animia: update from upstream
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
12 # stupid OS X things
eab9e623eb84 dep/animia: update from upstream
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
13 .DS_Store
eab9e623eb84 dep/animia: update from upstream
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
14 ._*
eab9e623eb84 dep/animia: update from upstream
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
15
13
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
16 # Prerequisites
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
17 *.d
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
18
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
19 # Compiled Object files
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
20 *.slo
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
21 *.lo
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
22 *.o
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
23 *.obj
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
24
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
25 # Precompiled Headers
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
26 *.gch
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
27 *.pch
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
28
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
29 # Compiled Dynamic libraries
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
30 *.so
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
31 *.dylib
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
32 *.dll
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
33
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
34 # Fortran module files
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
35 *.mod
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
36 *.smod
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
37
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
38 # Compiled Static libraries
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
39 *.lai
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
40 *.la
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
41 *.a
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
42 *.lib
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
43
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
44 # Executables
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
45 *.exe
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
46 *.out
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
47
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
48 syntax: regexp
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
49
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
50 # Build dir
4caed653e685 git2hg: convert git files
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
51 ^build/