Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
alpine
apk-tools
Commits
4fef37bb
Commit
4fef37bb
authored
Jan 15, 2009
by
Natanael Copa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Makefile: use $(PACKAGE) variable for package name
parent
4ad2659b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
Makefile
Makefile
+7
-6
No files found.
Makefile
View file @
4fef37bb
...
...
@@ -7,6 +7,7 @@
# under the terms of the GNU General Public License version 3 as published
# by the Free Software Foundation. See http://www.gnu.org/ for details.
PACKAGE
:=
apk-tools
VERSION
:=
2.0_pre1
SVN_REV
:=
$(
shell
svn info 2> /dev/null |
grep
^Revision |
cut
-d
' '
-f
2
)
...
...
@@ -54,13 +55,13 @@ install::
clean
::
rm
-rf
$(TARBALL)
TARBALL
:=
apk-tools
-
$(VERSION)
.tar.bz2
TARBALL
:=
$(PACKAGE)
-
$(VERSION)
.tar.bz2
dist
:
$(TARBALL)
$(TARBALL)
:
rm
-rf
apk-tools
git clone
.
apk-tools
cd
apk-tools
&&
(
cd
..
&&
git diff
)
| patch
-p1
tar
-cjf
$@
apk-tools
rm
-rf
apk-tools
rm
-rf
$(PACKAGE)
git clone
.
$(PACKAGE)
cd
$(PACKAGE)
&&
(
cd
..
&&
git diff
)
| patch
-p1
tar
-cjf
$@
$(PACKAGE)
rm
-rf
$(PACKAGE)
.EXPORT_ALL_VARIABLES
:
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