Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
Iris
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Rodolphe Lepigre
Iris
Commits
f07179bc
Commit
f07179bc
authored
Oct 07, 2014
by
Filip Sieczkowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a bug introduced by 8.4pl4 coq_makefile ("all" target arguments reversed).
parent
293d75e9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
Makefile
Makefile
+10
-10
No files found.
Makefile
View file @
f07179bc
...
...
@@ -14,7 +14,7 @@
#
# This Makefile was generated by the command line :
# coq_makefile lib/ModuRes
/ core_lang.v iris.v lang.v masks.v world_prop.v -R lib/ModuRes/ ModuRes -o Makefile
# coq_makefile lib/ModuRes
-R lib/ModuRes ModuRes core_lang.v iris.v lang.v masks.v world_prop.v -o Makefile
#
.DEFAULT_GOAL
:=
all
...
...
@@ -39,8 +39,8 @@ $(call includecmdwithout@,$(COQBIN)coqtop -config)
# #
##########################
COQLIBS
?=
-I
.
-R
lib/ModuRes
/
ModuRes
COQDOCLIBS
?=
-R
lib/ModuRes
/
ModuRes
COQLIBS
?=
-I
.
-R
lib/ModuRes ModuRes
COQDOCLIBS
?=
-R
lib/ModuRes ModuRes
##########################
# #
...
...
@@ -108,7 +108,7 @@ endif
# #
#######################################
all
:
$(VOFILES) ./lib/ModuRes/
all
:
./lib/ModuRes $(VOFILES)
spec
:
$(VIFILES)
...
...
@@ -142,7 +142,7 @@ beautify: $(VFILES:=.beautified)
@
echo
'Do not do "make clean" until you are sure that everything went well!'
@
echo
'If there were a problem, execute "for file in $$(find . -name \*.v.old -print); do mv $
${file}
$
${file%.old}
; done" in your shell/'
.PHONY
:
all opt byte archclean clean install userinstall depend html validate ./lib/ModuRes
/
.PHONY
:
all opt byte archclean clean install userinstall depend html validate ./lib/ModuRes
###################
# #
...
...
@@ -150,8 +150,8 @@ beautify: $(VFILES:=.beautified)
# #
###################
./lib/ModuRes
/
:
cd
./lib/ModuRes
/
;
$(MAKE)
all
./lib/ModuRes
:
cd
./lib/ModuRes
;
$(MAKE)
all
####################
# #
...
...
@@ -173,7 +173,7 @@ install:
for
i
in
$(VOFILESINC)
;
do
\
install
-m
0644
$$
i
$(DSTROOT)$(COQLIBINSTALL)
/ModuRes/
`
basename
$$
i
`
;
\
done
(
cd
./lib/ModuRes
/
;
$(MAKE)
DSTROOT
=
$(DSTROOT)
INSTALLDEFAULTROOT
=
$(INSTALLDEFAULTROOT)
/./lib/ModuRes/
install
)
(
cd
./lib/ModuRes
;
$(MAKE)
DSTROOT
=
$(DSTROOT)
INSTALLDEFAULTROOT
=
$(INSTALLDEFAULTROOT)
/./lib/ModuRes
install
)
install-doc
:
install
-d
$(DSTROOT)$(COQDOCINSTALL)
/ModuRes/html
...
...
@@ -185,11 +185,11 @@ clean:
rm
-f
$(VOFILES)
$(VIFILES)
$(GFILES)
$(VFILES:.v=.v.d)
$(VFILES:=.beautified)
$(VFILES:=.old)
rm
-f
all.ps all-gal.ps all.pdf all-gal.pdf all.glob
$(VFILES:.v=.glob)
$(VFILES:.v=.tex)
$(VFILES:.v=.g.tex)
all-mli.tex
-
rm
-rf
html mlihtml
(
cd
./lib/ModuRes
/
;
$(MAKE)
clean
)
(
cd
./lib/ModuRes
;
$(MAKE)
clean
)
archclean
:
rm
-f
*
.cmx
*
.o
(
cd
./lib/ModuRes
/
;
$(MAKE)
archclean
)
(
cd
./lib/ModuRes
;
$(MAKE)
archclean
)
printenv
:
@
$(COQBIN)
coqtop
-config
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment