fix spill code

This commit is contained in:
Quentin Carbonneaux 2015-04-05 15:22:04 -04:00
parent cd75608a54
commit 0aa0002337
2 changed files with 22 additions and 9 deletions

View file

@ -1,11 +1,14 @@
.PHONY: all test
.PHONY: all test clean
all: bak
bak: elf.ml lo2.ml
ocamlc -o bak elf.ml lo2.ml
ocamlc -g -o bak elf.ml lo2.ml
test: bak
./bak test
cc -o t tmain.c t.o
./t
clean:
rm -f bak t t.o