hop-2012/Makefile

21 lines
342 B
Makefile
Raw Normal View History

2012-01-08 17:41:04 +00:00
APP=ocamlmsg
all: message.ml amqp_spec.ml $(APP).native
2012-01-08 17:41:04 +00:00
message.ml: messages.json codegen.py
python codegen.py > $@
amqp_spec.ml: amqp0-9-1.stripped.xml amqp_codegen.py
python amqp_codegen.py > $@
2012-01-08 17:41:04 +00:00
clean:
ocamlbuild -clean
rm -f message.ml
rm -f amqp_spec.ml
2012-01-08 17:41:04 +00:00
$(APP).native: $(wildcard *.ml)
ocamlbuild $@
run: all
./$(APP).native