summary refs log tree commit diff
path: root/proto/Makefile
blob: c6ebd167a103530e6812ee75d951ea14e4e08159 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
.PHONY: all test clean

all: bak

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]