libqbe/Makefile

14 lines
188 B
Makefile
Raw Normal View History

2015-04-05 15:22:04 -04:00
.PHONY: all test clean
2015-04-05 15:09:59 -04:00
all: bak
bak: elf.ml lo2.ml
2015-04-05 15:22:04 -04:00
ocamlc -g -o bak elf.ml lo2.ml
2015-04-05 15:09:59 -04:00
test: bak
2015-04-05 15:36:39 -04:00
@./bak test
2015-06-11 08:49:46 -04:00
@cc -O2 -o t.out tmain.c t.o && ./t.out
2015-04-05 15:22:04 -04:00
clean:
2015-07-10 03:09:35 -04:00
rm -f bak *.out *.o *.cm[io]