xref: /netbsd-src/external/gpl3/gcc.old/dist/gcc/jit/docs/examples/tut04-toyvm/Makefile (revision 36ac495d2b3ea2b9d96377b2143ebfedac224b92)
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