2012-10-17 13:09:16 -07:00
|
|
|
#########################################################################
|
|
|
|
# #
|
|
|
|
# OCaml #
|
|
|
|
# #
|
|
|
|
# Xavier Clerc, SED, INRIA Rocquencourt #
|
|
|
|
# #
|
|
|
|
# Copyright 2010 Institut National de Recherche en Informatique et #
|
|
|
|
# en Automatique. All rights reserved. This file is distributed #
|
|
|
|
# under the terms of the Q Public License version 1.0. #
|
|
|
|
# #
|
|
|
|
#########################################################################
|
|
|
|
|
2013-05-14 11:34:30 -07:00
|
|
|
.PHONY: compile
|
2012-03-09 18:25:53 -08:00
|
|
|
compile: compile-targets
|
2010-01-25 05:47:28 -08:00
|
|
|
|
2013-05-14 11:34:30 -07:00
|
|
|
.PHONY: promote
|
2011-06-15 05:14:14 -07:00
|
|
|
promote: defaultpromote
|
|
|
|
|
2013-05-14 11:34:30 -07:00
|
|
|
.PHONY: clean
|
2010-01-25 05:47:28 -08:00
|
|
|
clean: defaultclean
|
|
|
|
|
|
|
|
include ../makefiles/Makefile.common
|
2012-03-09 18:25:53 -08:00
|
|
|
|
2013-05-14 11:34:30 -07:00
|
|
|
.PHONY: compile-targets
|
2012-03-14 03:22:07 -07:00
|
|
|
compile-targets: testing.cmi testing.cmo
|
2013-05-14 11:34:30 -07:00
|
|
|
@if $(BYTECODE_ONLY); then : ; else \
|
2012-03-14 03:22:07 -07:00
|
|
|
$(MAKE) testing.cmx; \
|
|
|
|
fi
|