annotate .hgignore @ 304:3ccf841ca1fe

make: improve readability and add examples/tests
author David Demelier <markand@malikania.fr>
date Thu, 24 Jun 2021 22:35:02 +0200
parents 789b23e01f52
children 3675021fa6e5
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
0
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
10 # vim/emacs specific.
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
11 ^tags$
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
12 ^tags.lock$
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
13 ^tags.temp$
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
14 \.swp$
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
15 \.swo$
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
16
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
17 # macOS specific.
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
18 \.DS_Store$
121
789b23e01f52 misc: reorganize hierarchy, closes #2490
David Demelier <markand@malikania.fr>
parents: 116
diff changeset
19
304
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
20 # examples.
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
21 ^examples/example-action/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
22 ^examples/example-animation/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
23 ^examples/example-audio/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
24 ^examples/example-cursor/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
25 ^examples/example-debug/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
26 ^examples/example-drawable/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
27 ^examples/example-font/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
28 ^examples/example-gridmenu/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
29 ^examples/example-label/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
30 ^examples/example-message/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
31 ^examples/example-sprite/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
32 ^examples/example-trace/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
33 ^examples/example-ui/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
34
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
35 # tests.
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
36 ^tests/test-action$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
37 ^tests/test-action-script$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
38 ^tests/test-alloc$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
39 ^tests/test-character$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
40 ^tests/test-color$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
41 ^tests/test-drawable$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
42 ^tests/test-error$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
43 ^tests/test-map$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
44 ^tests/test-save$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
45 ^tests/test-state$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
46 ^tests/test-tileset$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
47 ^tests/test-util$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
48
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
49 # maps and tilesets from libmlk-data.
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
50 ^libmlk-data/maps/.*\.map$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
51 ^libmlk-data/maps/.*\.tileset$
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 # executables.
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
54 ^mlk-adventure/mlk-adventure$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
55 ^tools/bcc/mlk-bcc$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
56 ^tools/map/mlk-map$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
57 ^tools/tileset/mlk-tileset$