libqbe/Makefile

15 lines
159 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
./bak test
cc -o t tmain.c t.o
./t
2015-04-05 15:22:04 -04:00
clean:
rm -f bak t t.o