Skip to content
Snippets Groups Projects
Commit bf87d8ff authored by Ludwig Knüpfer's avatar Ludwig Knüpfer
Browse files

Merge pull request #1462 from backenklee/smallPR

pkg/Makefile.http: There were two recipes for clean.
parents f539f306 bff3bf72
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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::
distclean::
rm -rf $(CURDIR)/$(PKG_NAME)-$(PKG_VERSION) $(CURDIR)/$(PKG_NAME)-$(PKG_VERSION).$(PKG_EXT)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment