Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PROSA - Formally Proven Schedulability Analysis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RT-PROOFS
PROSA - Formally Proven Schedulability Analysis
Commits
7f462118
There was a problem fetching the pipeline metadata.
Commit
7f462118
authored
8 years ago
by
Felipe Cerqueira
Browse files
Options
Downloads
Patches
Plain Diff
Fix create_makefile on Windows (MSYS2 shell)
parent
ac5ccfe0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+1
-1
1 addition, 1 deletion
Makefile
create_makefile.sh
+3
-9
3 additions, 9 deletions
create_makefile.sh
with
4 additions
and
10 deletions
Makefile
+
1
−
1
View file @
7f462118
...
...
@@ -65,7 +65,7 @@ OPT?=
COQDEP
?=
"
$(
COQBIN
)
coqdep"
-c
COQFLAGS
?=
-q
$(
OPT
)
$(
COQLIBS
)
$(
OTHERFLAGS
)
$(
COQ_XML
)
COQCHKFLAGS
?=
-silent
-o
COQDOCFLAGS
?=
-interpolate
-utf8
--parse-comments
--external
https://math-comp.github.io/math-comp/htmldoc/ mathcomp
COQDOCFLAGS
?=
-interpolate
-utf8
--plain-comments
--parse-comments
--external
https://math-comp.github.io/math-comp/htmldoc/ mathcomp
COQC
?=
$(
TIMER
)
"
$(
COQBIN
)
coqc"
GALLINA
?=
"
$(
COQBIN
)
gallina"
COQDOC
?=
"
$(
COQBIN
)
coqdoc"
...
...
This diff is collapsed.
Click to expand it.
create_makefile.sh
+
3
−
9
View file @
7f462118
...
...
@@ -7,28 +7,22 @@ coq_makefile -f _CoqProject $(find . -name "*.v" ! -name "*#*" ! -name "*eqdec*.
# adds the rt. prefix
if
[
"
$(
uname
)
"
==
"Darwin"
]
;
then
sed
-i
''
's|$(notdir $(^:.vo=))|$(addprefix rt., $(subst /,., $(^:.vo=)))|g'
Makefile
el
if
[
"
$(
expr
substr
$(
uname
-s
)
1 5
)
"
==
"Linux"
]
;
then
el
se
sed
-i
's|$(notdir $(^:.vo=))|$(addprefix rt., $(subst /,., $(^:.vo=)))|g'
Makefile
elif
[
"
$(
expr
substr
$(
uname
-s
)
1 10
)
"
==
"MINGW32_NT"
]
;
then
:
fi
# Fix 'make html' so that it parses comments and has links to ssreflect.
if
[
"
$(
uname
)
"
==
"Darwin"
]
;
then
sed
-i
''
's|-interpolate -utf8|-interpolate -utf8 --plain-comments --parse-comments --external https://math-comp.github.io/math-comp/htmldoc/ mathcomp|g'
Makefile
el
if
[
"
$(
expr
substr
$(
uname
-s
)
1 5
)
"
==
"Linux"
]
;
then
el
se
sed
-i
's|-interpolate -utf8|-interpolate -utf8 --plain-comments --parse-comments --external https://math-comp.github.io/math-comp/htmldoc/ mathcomp|g'
Makefile
elif
[
"
$(
expr
substr
$(
uname
-s
)
1 10
)
"
==
"MINGW32_NT"
]
;
then
:
fi
# Fix 'make clean' to remove all binary files, regardless of name
if
[
"
$(
uname
)
"
==
"Darwin"
]
;
then
sed
-i
''
's|rm -f $(VOFILES) $(VOFILES:.vo=.vio) $(GFILES) $(VFILES:.v=.v.d) $(VFILES:=.beautified) $(VFILES:=.old)|find . -name "*.vo" -delete -o -name "*.glob" -delete -o -name "*.v.d" -delete -o -name "*.vio" -delete -o -name "*.old" -delete -o -name "*.beautified" -delete|g'
Makefile
el
if
[
"
$(
expr
substr
$(
uname
-s
)
1 5
)
"
==
"Linux"
]
;
then
el
se
sed
-i
's|rm -f $(VOFILES) $(VOFILES:.vo=.vio) $(GFILES) $(VFILES:.v=.v.d) $(VFILES:=.beautified) $(VFILES:=.old)|find . -name "*.vo" -delete -o -name "*.glob" -delete -o -name "*.v.d" -delete -o -name "*.vio" -delete -o -name "*.old" -delete -o -name "*.beautified" -delete|g'
Makefile
elif
[
"
$(
expr
substr
$(
uname
-s
)
1 10
)
"
==
"MINGW32_NT"
]
;
then
:
fi
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