annotate .hgignore @ 308:8523fb0c8540

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