Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vcsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Kevin Lyda
vcsh
Commits
45f73746
Commit
45f73746
authored
13 years ago
by
Richard Hartmann
Browse files
Options
Downloads
Patches
Plain Diff
Transform Makefile to make re-use easier
parent
ae334c46
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+14
-13
14 additions, 13 deletions
Makefile
with
14 additions
and
13 deletions
Makefile
+
14
−
13
View file @
45f73746
PREFIX
=
/usr
PREFIX
=
/usr
manpages
=
vcsh.1
self
=
vcsh
manpages
=
$(
self
)
.1
all
=
test
manpages
all
=
test
manpages
all
:
$(all)
all
:
$(all)
install
:
all
install
:
all
install
-d
$(
DESTDIR
)$(
PREFIX
)
/bin
install
-d
$(
DESTDIR
)$(
PREFIX
)
/bin
install
-m
0755
vcsh
$(
DESTDIR
)$(
PREFIX
)
/bin
install
-m
0755
$(
self
)
$(
DESTDIR
)$(
PREFIX
)
/bin
install
-d
$(
DESTDIR
)$(
PREFIX
)
/share/man/man1
install
-d
$(
DESTDIR
)$(
PREFIX
)
/share/man/man1
install
-m
0644
$(
manpages
)
$(
DESTDIR
)$(
PREFIX
)
/share/man/man1
install
-m
0644
$(
manpages
)
$(
DESTDIR
)$(
PREFIX
)
/share/man/man1
install
-d
$(
DESTDIR
)$(
PREFIX
)
/share/doc/
vcsh
install
-d
$(
DESTDIR
)$(
PREFIX
)
/share/doc/
$(
self
)
install
-m
0644 README.md
$(
DESTDIR
)$(
PREFIX
)
/share/doc/
vcsh
install
-m
0644 README.md
$(
DESTDIR
)$(
PREFIX
)
/share/doc/
$(
self
)
install
-m
0644 doc/hooks
$(
DESTDIR
)$(
PREFIX
)
/share/doc/
vcsh
install
-m
0644 doc/hooks
$(
DESTDIR
)$(
PREFIX
)
/share/doc/
$(
self
)
install
-d
$(
DESTDIR
)$(
PREFIX
)
/share/zsh/vendor-completions
install
-d
$(
DESTDIR
)$(
PREFIX
)
/share/zsh/vendor-completions
install
-m
0644 _
vcsh
$(
DESTDIR
)$(
PREFIX
)
/share/zsh/vendor-completions
install
-m
0644 _
$(
self
)
$(
DESTDIR
)$(
PREFIX
)
/share/zsh/vendor-completions
manpages
:
$(manpages)
manpages
:
$(manpages)
vcsh
.1
:
doc/
vcsh
.1.ronn
$(self)
.1
:
doc/
$(self)
.1.ronn
ronn < doc/
vcsh
.1.ronn
>
vcsh
.1
ronn < doc/
$(
self
)
.1.ronn
>
$(
self
)
.1
clean
:
clean
:
rm
-rf
vcsh
.1
rm
-rf
$(
self
)
.1
uninstall
:
uninstall
:
rm
-rf
$(
DESTDIR
)$(
PREFIX
)
/bin/
vcsh
rm
-rf
$(
DESTDIR
)$(
PREFIX
)
/bin/
$(
self
)
rm
-rf
$(
DESTDIR
)$(
PREFIX
)
/share/man/man1/
vcsh
.1
rm
-rf
$(
DESTDIR
)$(
PREFIX
)
/share/man/man1/
$(
self
)
.1
rm
-rf
$(
DESTDIR
)$(
PREFIX
)
/share/doc/
vcsh
rm
-rf
$(
DESTDIR
)$(
PREFIX
)
/share/doc/
$(
self
)
rm
-rf
$(
DESTDIR
)$(
PREFIX
)
/share/zsh/vendor-completions/_
vcsh
rm
-rf
$(
DESTDIR
)$(
PREFIX
)
/share/zsh/vendor-completions/_
$(
self
)
# Potentially harmful, used a non-standard option on purpose.
# Potentially harmful, used a non-standard option on purpose.
# If PREFIX=/usr/local and that's empty...
# If PREFIX=/usr/local and that's empty...
...
...
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