-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.ide
56 lines (44 loc) · 2.27 KB
/
Makefile.ide
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
##########################################################################
## # The Coq Proof Assistant / The Coq Development Team ##
## v # Copyright INRIA, CNRS and contributors ##
## <O___,, # (see version control and CREDITS file for authors & dates) ##
## \VV/ ###############################################################
## // # This file is distributed under the terms of the ##
## # GNU Lesser General Public License Version 2.1 ##
## # (see LICENSE file for the text of the license) ##
##########################################################################
###########################################################################
# CoqIde special targets
###########################################################################
COQIDE:=$(CBIN)/coqide$(EXE)
IDETOP=$(CBIN)/coqidetop.opt$(EXE)
IDEBINDINGS:=$(CSHARE)/default.bindings
IDEFILES=$(wildcard ide/*.lang) ide/coq_style.xml ide/coq.png) $(IDEBINDINGS)
.PHONY: coqide
ALL_IDE_FILES=$(shell find ide/coqide -name '*.ml' -or -name '*.mli' -or -name '*.mll' -or -name '*.c' -or -name '*.h')
PROTO_IDE_FILES=$(shell find ide/coqide/protocol -name '*.ml' -or -name '*.mli' -or -name '*.mll' -or -name '*.c' -or -name '*.h')
# We depend on all ide source files to trigger the dune rebuild
$(COQIDE): $(ALL_IDE_FILES)
# For idetop we depend on idetop.ml + all source files as it links to Coq
$(IDETOP): $(ALL_ML_SOURCE_FILES) $(PROTO_IDE_FILES) ide/coqide/idetop.ml
ifeq ($(HASCOQIDE),no)
coqide:
else
coqide: $(COQIDE) $(IDETOP) $(TOPBINOPT) $(IDEBINDINGS) $(VO_OUT_DIR)theories/Init/Prelude.$(VO) $(BCONTEXT)/coqide.install
endif
# EJGA: Once the Boot.Env PR is done, we can easily relocate these files,
# see the TODO in the dune file.
#
# $(INSTALLLIB) ide/coq.png ide/*.lang ide/coq_style.xml $(IDEBINDINGS) $(DATADIR)
###########################################################################
# CoqIde for Windows special targets
###########################################################################
# This is either x86_64-w64-mingw32 or i686-w64-mingw32
TARGET_ARCH=$(shell $(CC) -dumpmachine)
%.o: %.rc
$(SHOW)'WINDRES $<'
$(HIDE)$(TARGET_ARCH)-windres -i $< -o $@
# For emacs:
# Local Variables:
# mode: makefile
# End: