Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
bff3bf72
Commit
bff3bf72
authored
10 years ago
by
Leon George
Browse files
Options
Downloads
Patches
Plain Diff
pkg/Makefile.{http,git}: Minor issues resolved.
The were two recipes for clean. One of them is now "dist-clean"
parent
f539f306
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pkg/Makefile.git
+2
-2
2 additions, 2 deletions
pkg/Makefile.git
pkg/Makefile.http
+4
-4
4 additions, 4 deletions
pkg/Makefile.http
with
6 additions
and
6 deletions
pkg/Makefile.git
+
2
−
2
View file @
bff3bf72
...
...
@@ -7,10 +7,10 @@ include $(RIOTBOARD)/Makefile.base
include
$(RIOTBOARD)/$(BOARD)/Makefile.include
endif
.PHONY
:
all clean patch
reset
.PHONY
:
all clean patch
distclean
all
:
patch
make
-C
$(
CURDIR
)
/
$(
PKG_NAME
)
$(
MAKE
)
-C
$(
CURDIR
)
/
$(
PKG_NAME
)
patch
:
$(CURDIR)/$(PKG_NAME)/Makefile
# Dependancy might be changed accordingly though we think the Makefile
...
...
This diff is collapsed.
Click to expand it.
pkg/Makefile.http
+
4
−
4
View file @
bff3bf72
...
...
@@ -3,10 +3,10 @@ PKG_URL = http://example.com/downloads # source url of the package e.g. a gi
PKG_VERSION
=
v1.2.3
# version of the package to use e.g. a git commit/ref
PKG_EXT
=
zip
# extension of this package
.PHONY
:
all clean patch
reset
.PHONY
:
all clean patch
distclean
all
:
patch
make
-C
$(
CURDIR
)
/
$(
PKG_NAME
)
-
$(
PKG_VERSION
)
$(
MAKE
)
-C
$(
CURDIR
)
/
$(
PKG_NAME
)
-
$(
PKG_VERSION
)
patch
:
$(CURDIR)/$(PKG_NAME)-$(PKG_VERSION)/Makefile
# Dependancy might be changed accordingly though we think the Makefile
...
...
@@ -30,7 +30,7 @@ $(CURDIR)/$(PKG_NAME)-$(PKG_VERSION).$(PKG_EXT):
clean
::
# Reset package to checkout state.
rm
-rf
$(
CURDIR
)
/
$(
PKG_NAME
)
-
$(
PKG_VERSION
)
&&
\
make
$(
CURDIR
)
/
$(
PKG_NAME
)
-
$(
PKG_VERSION
)
/Makefile
$(
MAKE
)
$(
CURDIR
)
/
$(
PKG_NAME
)
-
$(
PKG_VERSION
)
/Makefile
clean
::
dist
clean
::
rm
-rf
$(
CURDIR
)
/
$(
PKG_NAME
)
-
$(
PKG_VERSION
)
$(
CURDIR
)
/
$(
PKG_NAME
)
-
$(
PKG_VERSION
)
.
$(
PKG_EXT
)
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