blob: c631c7b1a2fdee9b3457a5c693436e7bee806a7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# -*- Makefile -*-
# setting variables
COQPROJECT?=Make
COQMAKEOPTIONS=--no-print-directory
# Main Makefile
include Makefile.common
# --------------------------------------------------------------------
# this sets variables COQVERSION and MLLIBEXTRA
# assuming PLUGIN is set to the directory which contains the plugins
# and SSR is set to the directory of the ssreflect package
PLUGIN=../plugin
SSR=ssreflect
include ssreflect/Makefile.detect-coq-version
COQMAKEFILEOPTIONS=$(MLLIBEXTRA)
|