aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2019-12-09 18:05:45 +0100
committerEmilio Jesus Gallego Arias2019-12-13 17:08:49 +0100
commit59aa19ab9adc2c8aceaa7752d5fecb24ebe2d725 (patch)
treea1fe1a30dba9b042df0633c6f277ecf2be7a6465 /Makefile
parentada783d03c937ff71f87fb65d3f89e3e68a7320f (diff)
[build] Allow the selection of build system using an env var.
This is undocumented on purpose by now. Suggested by Gaƫtan Gilbert
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 635885b191..c416172dbf 100644
--- a/Makefile
+++ b/Makefile
@@ -9,4 +9,8 @@
##########################################################################
# The default build system is make-based one.
+ifndef COQ_USE_DUNE
include Makefile.make
+else
+include Makefile.dune
+endif