annotate .hgignore @ 305:3675021fa6e5

make: add fakeroot support
author David Demelier <markand@malikania.fr>
date Sun, 27 Jun 2021 17:07:37 +0200
parents 3ccf841ca1fe
children 6a7bca547f9a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
304
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
1 # temporary files.
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
2 \.a$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
3 \.d$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
4 \.o$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
5
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
6 # generated files.
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
7 assets/.*\.h$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
8 ^config\.h$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
9
305
3675021fa6e5 make: add fakeroot support
David Demelier <markand@malikania.fr>
parents: 304
diff changeset
10 # fakeroot directory.
3675021fa6e5 make: add fakeroot support
David Demelier <markand@malikania.fr>
parents: 304
diff changeset
11 ^fakeroot
3675021fa6e5 make: add fakeroot support
David Demelier <markand@malikania.fr>
parents: 304
diff changeset
12
0
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
13 # vim/emacs specific.
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
14 ^tags$
305
3675021fa6e5 make: add fakeroot support
David Demelier <markand@malikania.fr>
parents: 304
diff changeset
15 ^tags\.lock$
3675021fa6e5 make: add fakeroot support
David Demelier <markand@malikania.fr>
parents: 304
diff changeset
16 ^tags\.temp$
3675021fa6e5 make: add fakeroot support
David Demelier <markand@malikania.fr>
parents: 304
diff changeset
17 ^cscope\.out$
0
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
18 \.swp$
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
19 \.swo$
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
20
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
21 # macOS specific.
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
22 \.DS_Store$
121
789b23e01f52 misc: reorganize hierarchy, closes #2490
David Demelier <markand@malikania.fr>
parents: 116
diff changeset
23
304
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
24 # examples.
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
25 ^examples/example-action/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
26 ^examples/example-animation/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
27 ^examples/example-audio/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
28 ^examples/example-cursor/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
29 ^examples/example-debug/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
30 ^examples/example-drawable/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
31 ^examples/example-font/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
32 ^examples/example-gridmenu/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
33 ^examples/example-label/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
34 ^examples/example-message/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
35 ^examples/example-sprite/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
36 ^examples/example-trace/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
37 ^examples/example-ui/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
38
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
39 # tests.
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
40 ^tests/test-action$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
41 ^tests/test-action-script$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
42 ^tests/test-alloc$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
43 ^tests/test-character$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
44 ^tests/test-color$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
45 ^tests/test-drawable$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
46 ^tests/test-error$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
47 ^tests/test-map$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
48 ^tests/test-save$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
49 ^tests/test-state$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
50 ^tests/test-tileset$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
51 ^tests/test-util$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
52
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
53 # maps and tilesets from libmlk-data.
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
54 ^libmlk-data/maps/.*\.map$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
55 ^libmlk-data/maps/.*\.tileset$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
56
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
57 # executables.
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
58 ^mlk-adventure/mlk-adventure$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
59 ^tools/bcc/mlk-bcc$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
60 ^tools/map/mlk-map$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
61 ^tools/tileset/mlk-tileset$