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
4
Open
Dario Pinto
requested to merge
feature/new-cgc
into
master
4 years ago
Overview
3
Commits
22
Pipelines
0
Changes
4
Expand
0
0
Merge request reports
Viewing commit
83a31df7
Prev
Next
Show latest version
4 files
+
647
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
83a31df7
add tiny-AES128 library
· 83a31df7
Andre Maroneze
authored
4 years ago
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