Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
441db930
Commit
441db930
authored
2 years ago
by
Loïc Correnson
Browse files
Options
Downloads
Patches
Plain Diff
[dune] removed useless Qed makefie
parent
dc3e7a74
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/qed/Makefile
+0
-116
0 additions, 116 deletions
src/plugins/qed/Makefile
with
0 additions
and
116 deletions
src/plugins/qed/Makefile
deleted
100644 → 0
+
0
−
116
View file @
dc3e7a74
##########################################################################
# #
# This file is part of WP plug-in of Frama-C. #
# #
# Copyright (C) 2007-2022 #
# CEA (Commissariat a l'energie atomique et aux energies #
# alternatives) #
# #
# you can redistribute it and/or modify it under the terms of the GNU #
# Lesser General Public License as published by the Free Software #
# Foundation, version 2.1. #
# #
# It is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU Lesser General Public License for more details. #
# #
# See the GNU Lesser General Public License version 2.1 #
# for more details (enclosed in the file licenses/LGPLv2.1). #
# #
##########################################################################
# --------------------------------------------------------------------------
# --- Frama-C Config
# --------------------------------------------------------------------------
ifndef
FRAMAC_SHARE
FRAMAC_SHARE
:=
$(
shell frama-c
-print-path
)
endif
ifndef
FRAMAC_LIBDIR
FRAMAC_LIBDIR
:=
$(
shell frama-c
-print-libpath
)
endif
PLUGIN_DIR
?=
.
ifneq
("$(FRAMAC_INTERNAL)","yes")
include
$(FRAMAC_SHARE)/Makefile.config
endif
# --------------------------------------------------------------------------
# --- Plugin Config
# --------------------------------------------------------------------------
PLUGIN_ENABLE
:=
yes
PLUGIN_NAME
:=
Qed
PLUGIN_CMO
:=
\
hcons
\
listmap listset
\
intmap intset
\
idxmap idxset
\
mergemap mergeset collection
\
partition cache
\
bvars
\
pool kind term
\
plib pretty
export
\
export_whycore
\
export_why3
\
PLUGIN_CMI
:=
logic engine
PLUGIN_DEPENDENCIES
:=
PLUGIN_TESTS_DIRS
:=
PLUGIN_BFLAGS
:=
PLUGIN_OFLAGS
:=
PLUGIN_GENERATED
:=
$(
PLUGIN_DIR
)
/Qed.mli
PLUGIN_DISTRIBUTED
:=
$(
PLUGIN_ENABLED
)
PLUGIN_DISTRIB_EXTERNAL
:=
Makefile
include
$(FRAMAC_SHARE)/Makefile.dynamic
# --------------------------------------------------------------------------
# --- Plugin API
# --------------------------------------------------------------------------
QED_API
=
\
hcons.mli
\
listset.mli listmap.mli
\
intset.mli intmap.mli
\
idxset.mli idxmap.mli
\
mergemap.mli mergeset.mli collection.mli
\
partition.mli cache.mli
\
bvars.mli
\
logic.mli
\
pool.mli kind.mli term.mli
\
plib.mli pretty.mli engine.mli export.mli
\
export_whycore.mli
\
export_why3.mli
\
QED_MLI
=
$(
addprefix
$(
Qed_DIR
)
/,
$(
QED_API
))
define
QED_capitalize
$(
shell
printf
"%s%s"
\
$$($(
ECHO
)
$(
1
)
|
cut
-c
1 |
tr
'[:lower:]'
'[:upper:]'
)
$$($(
ECHO
)
$(
1
)
|
cut
-c
2-
))
endef
define
QED_export
$(ECHO) "module $(call QED_capitalize, $(basename $(notdir $(1))))
:
sig" >> $(2);
$(CAT)
$(1)
>>
$(2);
$(ECHO)
"end"
>>
$(2);
endef
$(Qed_DIR)/Qed.mli
:
$(QED_MLI)
$(
PRINT_MAKING
)
$@
$(
RM
)
$@
$@
.tmp
$(
ECHO
)
"(* This file is generated. Do not edit. *)"
>
$@
.tmp
$(
ECHO
)
"(** {b Qed Public API} *)"
>
$@
.tmp
$(
foreach file,
$(
QED_MLI
)
,
$(
call QED_export,
$(
file
)
,
$@
.tmp
))
$(
CHMOD_RO
)
$@
.tmp
$(
MV
)
$@
.tmp
$@
clean
::
$(
RM
)
$(
Qed_DIR
)
/Qed.mli
# --------------------------------------------------------------------------
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment