1factorial: toyvm
2	./toyvm factorial.toy 10
3
4fibonacci: toyvm
5	./toyvm fibonacci.toy 8
6
7toyvm: toyvm.c Makefile
8	g++ -Wall -g -o $@ $< $(shell pkg-config --cflags --libs libgccjit)
9
10clean:
11	rm -f *.o toyvm
12