blob: 2b2905033981b880477e757bec9a0a8d09df183d (
plain)
1
2
3
4
5
6
7
8
|
# This Makefile is designed to make the .ml files corresponding to .ml4 files
include Makefile
include .depend.camlp4
.ml4.ml:
$(CAMLP4O) $(CAMLP4EXTENDFLAGS) pr_o.cmo `$(CAMLP4DEPS) $<` -impl $< > $@ || rm -f $@
|