annotate .hgignore @ 310:b271a0e8ce52

misc: fix O_BINARY
author David Demelier <markand@malikania.fr>
date Mon, 06 Sep 2021 09:56:59 +0200
parents 0858e33a762d
children dbfe05b88627
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$
306
6a7bca547f9a make: add NLS support
David Demelier <markand@malikania.fr>
parents: 305
diff changeset
5 \.mo$
309
0858e33a762d misc: initial windows support
David Demelier <markand@malikania.fr>
parents: 308
diff changeset
6 \.exe$
304
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
7
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
8 # generated files.
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
9 assets/.*\.h$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
10 ^config\.h$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
11
308
8523fb0c8540 make: add run target
David Demelier <markand@malikania.fr>
parents: 306
diff changeset
12 # out directory.
8523fb0c8540 make: add run target
David Demelier <markand@malikania.fr>
parents: 306
diff changeset
13 ^out
305
3675021fa6e5 make: add fakeroot support
David Demelier <markand@malikania.fr>
parents: 304
diff changeset
14
0
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
15 # vim/emacs specific.
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
16 ^tags$
305
3675021fa6e5 make: add fakeroot support
David Demelier <markand@malikania.fr>
parents: 304
diff changeset
17 ^tags\.lock$
3675021fa6e5 make: add fakeroot support
David Demelier <markand@malikania.fr>
parents: 304
diff changeset
18 ^tags\.temp$
3675021fa6e5 make: add fakeroot support
David Demelier <markand@malikania.fr>
parents: 304
diff changeset
19 ^cscope\.out$
0
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
20 \.swp$
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
21 \.swo$
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
22
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
23 # macOS specific.
efcc908bca21 core: implement basic windowing, closes #2437
David Demelier <markand@malikania.fr>
parents:
diff changeset
24 \.DS_Store$
121
789b23e01f52 misc: reorganize hierarchy, closes #2490
David Demelier <markand@malikania.fr>
parents: 116
diff changeset
25
304
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
26 # examples.
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
27 ^examples/example-action/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
28 ^examples/example-animation/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
29 ^examples/example-audio/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
30 ^examples/example-cursor/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
31 ^examples/example-debug/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
32 ^examples/example-drawable/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
33 ^examples/example-font/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
34 ^examples/example-gridmenu/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
35 ^examples/example-label/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
36 ^examples/example-message/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
37 ^examples/example-sprite/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
38 ^examples/example-trace/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
39 ^examples/example-ui/main$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
40
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
41 # tests.
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
42 ^tests/test-action$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
43 ^tests/test-action-script$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
44 ^tests/test-alloc$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
45 ^tests/test-character$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
46 ^tests/test-color$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
47 ^tests/test-drawable$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
48 ^tests/test-error$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
49 ^tests/test-map$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
50 ^tests/test-save$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
51 ^tests/test-state$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
52 ^tests/test-tileset$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
53 ^tests/test-util$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
54
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
55 # maps and tilesets from libmlk-data.
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
56 ^libmlk-data/maps/.*\.map$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
57 ^libmlk-data/maps/.*\.tileset$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
58
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
59 # executables.
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
60 ^mlk-adventure/mlk-adventure$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
61 ^tools/bcc/mlk-bcc$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
62 ^tools/map/mlk-map$
3ccf841ca1fe make: improve readability and add examples/tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
63 ^tools/tileset/mlk-tileset$