Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
why3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Why3
why3
Commits
4df96e8e
Commit
4df96e8e
authored
10 years ago
by
Andrei Paskevich
Browse files
Options
Downloads
Patches
Plain Diff
Makefile: do not recreate existing symlinks in share/
parent
92341bd0
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile.in
+11
-5
11 additions, 5 deletions
Makefile.in
with
11 additions
and
5 deletions
Makefile.in
+
11
−
5
View file @
4df96e8e
...
...
@@ -120,11 +120,6 @@ CLEANDIRS =
CLEANLIBS
=
GENERATED
=
install_local
::
ln
-s
-n
-f
../drivers share/drivers
ln
-s
-n
-f
../modules share/modules
ln
-s
-n
-f
../theories share/theories
##############
# Why3 library
##############
...
...
@@ -555,6 +550,17 @@ install_local:: bin/why3 $(addprefix bin/,$(TOOLS_BIN))
bin/%
:
bin/%.@OCAMLBEST@
ln
-sf
$(
notdir
$<
)
$@
install_local
::
share/drivers share/modules share/theories
share/drivers
:
ln
-snf
../drivers share/drivers
share/modules
:
ln
-snf
../modules share/modules
share/theories
:
ln
-snf
../theories share/theories
ifneq
"$(MAKECMDGOALS:clean%=clean)" "clean"
include
$(TOOLSDEP)
endif
...
...
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