Diff of /Makefile [1f6122] .. [212bda]  Maximize  Restore

Switch to unified view

a/Makefile b/Makefile
...
...
47
47
48
%.test.txt: %.c ${C2IEC}
48
%.test.txt: %.c ${C2IEC}
49
    ./${C2IEC} < $< > $@
49
    ./${C2IEC} < $< > $@
50
50
51
51
52
52
# preprocessing rule for foreign code (to test)
53
%.pre.c: %.c
54
    gcc -o $@ \
55
        -Ispark \
56
            -D__builtin_va_list=int \
57
            -D"__extension__=" \
58
            -D"__signed__=signed" \
59
            -D"__inline=" \
60
            -D"__inline__=" \
61
            -D"__attribute__(...)=" \
62
            -D"__alignof__(...)=4" \
63
            -D"__asm__(...)={}" \
64
            -D"__uint128_t=long long" \
65
            -E \
66
        $<
67
68