/usr/share/frama-c/Makefile.config is in frama-c-base 20151002+magnesium+dfsg-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | ##########################################################################
# #
# This file is part of Frama-C. #
# #
# Copyright (C) 2007-2015 #
# CEA (Commissariat à l'énergie atomique et aux énergies #
# 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). #
# #
##########################################################################
##########################################################################
# #
# Define variables from configure. #
# These variables may be redefined later. #
# #
##########################################################################
#######################
# Working directories #
#######################
FRAMAC_TOP_SRCDIR ?= /build/frama-c-RZQh8g/frama-c-20151002+magnesium+dfsg
######################
# Installation paths #
######################
CYGPATH ?=
DESTDIR ?=
prefix ?=/usr
exec_prefix ?=${prefix}
datarootdir ?=${prefix}/share
datadir ?=${datarootdir}
BINDIR ?="$(DESTDIR)${exec_prefix}/bin"
LIBDIR ?="$(DESTDIR)${exec_prefix}/lib"
DATADIR ?="$(DESTDIR)${prefix}/share"
MANDIR ?="$(DESTDIR)${prefix}/share/man"
FRAMAC_LIBDIR ?=$(LIBDIR)/frama-c
FRAMAC_PLUGINDIR ?=$(FRAMAC_LIBDIR)/plugins
FRAMAC_DATADIR ?=$(DATADIR)/frama-c
EMACS_DATADIR ?=$(DATADIR)/emacs/site-lisp
FRAMAC_DEFAULT_CPP ?=gcc -E -C -I.
FRAMAC_GNU_CPP ?=true
DEFAULT_CPP_KEEP_COMMENTS?=true
FC_MCPP ?=no
CC =gcc
###############
# Ocaml stuff #
###############
# compilers and others executables
OCAMLC ?=ocamlc.opt
OCAMLOPT ?=ocamlopt.opt
OCAMLDEP ?=ocamldep.opt -slash
OCAMLLEX ?=ocamllex.opt
OCAMLYACC ?=ocamlyacc
OCAMLMKTOP ?=ocamlmktop
OCAMLDOC ?=ocamldoc.opt
OCAMLCP ?=ocamlcp
# others ocaml stuffs
# either -annot or -dtypes
OCAML_ANNOT_OPTION ?=-bin-annot
# ocaml stdlib path
OCAMLLIB ?=/usr/lib/ocaml
# either opt or byte
OCAMLBEST ?=opt
OCAMLVERSION ?=4.02.3
NATIVE_DYNLINK ?=yes
USABLE_NATIVE_DYNLINK ?=yes
NATIVE_THREADS ?=yes
OCAMLWIN32 ?=no
PTESTSBEST ?=opt
#############
# Libraries #
#############
# ocamlgraph
OCAMLGRAPH_INCLUDE?=-I /usr/lib/ocaml/ocamlgraph # ocamlgraph compilation directive
OCAMLGRAPH_LOCAL ?=
OCAMLGRAPH_HOME ?=/usr/lib/ocaml/ocamlgraph
# lablgtk
HAS_LABLGTK ?=yes
HAS_LABLGTK_CUSTOM_MODEL ?=yes
LABLGTK_PATH ?=+lablgtk2
# lablgtksourceview
HAS_GTKSOURCEVIEW ?=yes
# lablgnomecanvas
HAS_GNOMECANVAS ?=yes
# zarith
HAS_ZARITH ?=yes
ZARITH_PATH ?=/usr/lib/ocaml/zarith
##########################
# Miscellaneous commands #
##########################
OTAGS ?=
DOT ?=dot
HAS_DOT ?=yes
HEADACHE ?= headache -c $(FRAMAC_SRC)/headers/headache_config.txt
###########################
# Miscellaneous variables #
###########################
VERBOSEMAKE ?=yes
LOCAL_MACHDEP ?=no
EXE ?=
# Required by Cil
UNDERSCORE_NAME ?=
HAVE_BUILTIN_VA_LIST ?=
THREAD_IS_KEYWORD ?=
##########################
# Variables for plug-ins #
##########################
EXTERNAL_PLUGINS ?= src/plugins/aorai src/plugins/obfuscator src/plugins/report src/plugins/security_slicing src/plugins/wp
# Integrated plugins
ENABLE_CALLGRAPH ?=yes
ENABLE_CONSTANT_PROPAGATION ?=yes
ENABLE_FROM_ANALYSIS ?=yes
ENABLE_GUI ?=yes
ENABLE_IMPACT ?=no
ENABLE_INOUT ?=yes
ENABLE_METRICS ?=yes
ENABLE_OCCURRENCE ?=yes
ENABLE_PDG ?=yes
ENABLE_POSTDOMINATORS ?=yes
ENABLE_RTEGEN ?=yes
ENABLE_SCOPE ?=yes
ENABLE_SLICING ?=yes
ENABLE_SPARECODE ?=yes
ENABLE_USERS ?=yes
ENABLE_VALUE_ANALYSIS ?=yes
DYNAMIC_CALLGRAPH ?=yes
DYNAMIC_CONSTANT_PROPAGATION ?=yes
DYNAMIC_FROM_ANALYSIS ?=yes
#DYNAMIC_GUI: never dynamic
DYNAMIC_IMPACT ?=yes
DYNAMIC_INOUT ?=yes
DYNAMIC_METRICS ?=yes
DYNAMIC_OCCURRENCE ?=yes
DYNAMIC_PDG ?=yes
#DYNAMIC_POSTDOMINATORS: never dynamic
#DYNAMIC_RTEGEN: never dynamic
DYNAMIC_SCOPE ?=yes
DYNAMIC_SLICING ?=yes
DYNAMIC_SPARECODE ?=yes
DYNAMIC_USERS ?=yes
DYNAMIC_VALUE_ANALYSIS ?=yes
##########################################################################
# Local Variables:
# mode: makefile
# End:
|