File: Makefile.ide

package info (click to toggle)
coq 8.16.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 40,596 kB
  • sloc: ml: 219,376; sh: 3,545; python: 3,231; ansic: 2,529; makefile: 767; lisp: 279; javascript: 63; xml: 24; sed: 2
file content (58 lines) | stat: -rw-r--r-- 2,382 bytes parent folder | download | duplicates (2)
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
57
58
##########################################################################
##         #   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:
	>&2 echo "CoqIDE compilation configured off."
	false
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: