blob: f137b4a7358738241b8e5a6da8100a2a192b95b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
.PHONY: test clean
bak: elf.ml lo2.ml
ocamlc -g -o bak elf.ml lo2.ml
test: bak
@./bak test
@cc -O2 -o t.out tmain.c t.o && ./t.out
clean:
rm -f bak *.out *.o *.cm[io]
|