Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
open-source-case-studies
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
open-source-case-studies
Merge requests
!6
Feature/new cgc
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Feature/new cgc
feature/new-cgc
into
master
Overview
3
Commits
22
Pipelines
0
Changes
162
Open
Dario Pinto
requested to merge
feature/new-cgc
into
master
4 years ago
Overview
3
Commits
22
Pipelines
0
Changes
9
Expand
0
0
Merge request reports
Compare
version 11
version 16
6f9d83d2
4 years ago
version 15
dc74d1ee
4 years ago
version 14
1fec1386
4 years ago
version 13
83a31df7
4 years ago
version 12
90c39364
4 years ago
version 11
a62db1a6
4 years ago
version 10
4de2623b
4 years ago
version 9
2e4ee208
4 years ago
version 8
5dff3999
4 years ago
version 7
cd4d2cbc
4 years ago
version 6
7c230a01
4 years ago
version 5
711195fc
4 years ago
version 4
682b3bd2
4 years ago
version 3
26509386
4 years ago
version 2
9b0ef155
4 years ago
version 1
5ad96422
4 years ago
master (HEAD)
and
version 12
latest version
6f9d83d2
22 commits,
2 years ago
version 16
6f9d83d2
22 commits,
4 years ago
version 15
dc74d1ee
21 commits,
4 years ago
version 14
1fec1386
21 commits,
4 years ago
version 13
83a31df7
20 commits,
4 years ago
version 12
90c39364
19 commits,
4 years ago
version 11
a62db1a6
18 commits,
4 years ago
version 10
4de2623b
18 commits,
4 years ago
version 9
2e4ee208
17 commits,
4 years ago
version 8
5dff3999
17 commits,
4 years ago
version 7
cd4d2cbc
17 commits,
4 years ago
version 6
7c230a01
16 commits,
4 years ago
version 5
711195fc
13 commits,
4 years ago
version 4
682b3bd2
12 commits,
4 years ago
version 3
26509386
10 commits,
4 years ago
version 2
9b0ef155
9 commits,
4 years ago
version 1
5ad96422
9 commits,
4 years ago
Show latest version
9 files
+
1998
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Some changes are not shown
For a faster browsing experience, some files are collapsed by default.
Expand all files
Files
9
Search (e.g. *.vue) (Ctrl+P)
cgc-challenges/Dungeon_Master/.frama-c/GNUmakefile
0 → 100644
+
50
−
0
Options
# Makefile template for Frama-C/Eva case studies.
# For details and usage information, see the Frama-C User Manual.
### Prologue. Do not modify this block. #######################################
-include
path.mk
FRAMAC
?=
frama-c
include
$(shell $(FRAMAC)-config -scripts)/prologue.mk
###############################################################################
# Edit below as needed. MACHDEP is mandatory. Suggested flags are optional.
MACHDEP
=
x86_32
## Preprocessing flags (for -cpp-extra-args)
CPPFLAGS
+=
\
-DPATCHED_1
\
-I
../../lib
\
-I
../src
\
## General flags
FCFLAGS
+=
\
-add-symbolic-path
=
.:..,CGC_LIB:../../lib
\
-kernel-warn-key
annot:missing-spec
=
abort
\
-kernel-warn-key
typing:implicit-function-declaration
=
abort
\
-absolute-valid-range
0x4347C000-0x4347FFFF
\
## Eva-specific flags
EVAFLAGS
+=
\
-eva-warn-key
builtins:missing-spec
=
abort
\
-eva-use-spec
cgc_eval_formula
\
## GUI-only flags
FCGUIFLAGS
+=
\
-add-symbolic-path
=
.:..,CGC_LIB:../../lib
\
## Analysis targets (suffixed with .eva)
TARGETS
=
Dungeon_Master.eva
### Each target <t>.eva needs a rule <t>.parse with source files as prerequisites
Dungeon_Master.parse
:
\
../../lib/common.c
\
../../lib/libcgc.c
\
../src/service.c
\
../src/dungeon.c
\
../../lib/ansi_x931_aes128.c
\
../../lib/tiny-AES128-C/aes.c
\
### Epilogue. Do not modify this block. #######################################
include
$(shell $(FRAMAC)-config -scripts)/epilogue.mk
###############################################################################
Loading