summaryrefslogtreecommitdiff
path: root/build.sh
blob: 9d3cbfaecc4c53278e938133fe06d286d87e7f64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
gcc -O0 -g -Wall `pkg-config --cflags --libs glib-2.0`	\
    ./main.c		\
    ./ast.c		\
    ./node.c		\
    ./scanner.c		\
    ./parser.c		\
    ./prepare.c		\
    ./symbol.c		\
    ./type-check.c	\
    ./switch.c		\
    ./graph.c		\
    ./optimize.c	\
    ./offsets.c		\
    ./init-check.c	\
    ./return-check.c	\
    ./util.c		\
    ./gc.c		\
    ./interpret.c