-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
66 lines (52 loc) · 1.4 KB
/
justfile
File metadata and controls
66 lines (52 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
build-example:
cc examples/okmin.c -o examples/okmin
test: test-helpers test-be-stack test-fet test-jmp test-lod test-multibyte test-nop test-putchar test-shf test-skip-lit test-skip test-str
@test-helpers:
cc tests/test-helpers.c -o tests/test-helpers
./tests/test-helpers
rm tests/test-helpers
@test-be-stack:
cc tests/test-be-stack.c -o tests/test-be-stack
./tests/test-be-stack
rm tests/test-be-stack
@test-fet:
cc tests/test-fet.c -o tests/test-fet
./tests/test-fet
rm tests/test-fet
@test-jmp:
cc tests/test-jmp.c -o tests/test-jmp
./tests/test-jmp
rm tests/test-jmp
@test-lod:
cc tests/test-lod.c -o tests/test-lod
./tests/test-lod
rm tests/test-lod
@test-multibyte:
cc tests/test-multibyte.c -o tests/test-multibyte
./tests/test-multibyte
rm tests/test-multibyte
@test-nop:
cc tests/test-nop.c -o tests/test-nop
./tests/test-nop
rm tests/test-nop
@test-putchar:
cc tests/test-putchar.c -o tests/test-putchar
./tests/test-putchar
rm tests/test-putchar
@test-shf:
cc tests/test-shf.c -o tests/test-shf
./tests/test-shf
rm tests/test-shf
@test-skip-lit:
cc tests/test-skip-lit.c -o tests/test-skip-lit
./tests/test-skip-lit
rm tests/test-skip-lit
@test-skip:
cc tests/test-skip.c -o tests/test-skip
./tests/test-skip
rm tests/test-skip
@test-str:
cc tests/test-str.c -o tests/test-str
./tests/test-str
rm tests/test-str
# TODO build example