From 0aa0002337ca3a101752f19e9cc1a153afb846af Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Sun, 5 Apr 2015 15:22:04 -0400 Subject: fix spill code --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5af98f3..a8a58fc 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit 1.4.1