Skip to content
Snippets Groups Projects
Commit 5586d8f1 authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

pkg: microcoap: adapt to use pkg.mk

parent d03d83a7
No related branches found
No related tags found
No related merge requests found
PKG_NAME=microcoap PKG_NAME=microcoap
PKG_URL=git://github.com/1248/microcoap.git PKG_URL=git://github.com/1248/microcoap.git
PKG_VERSION=9cb1dcda2182a8dca8483b230cda8b591a924c82 PKG_VERSION=9cb1dcda2182a8dca8483b230cda8b591a924c82
PKG_DIR=$(CURDIR)/$(PKG_NAME)
ifneq ($(RIOTBASE),) ifneq ($(RIOTBASE),)
INCLUDES += -I$(RIOTBASE)/sys/include -I$(RIOTBASE)/sys/net/include \ INCLUDES += -I$(RIOTBASE)/sys/include -I$(RIOTBASE)/sys/net/include \
-I$(RIOTBASE)/sys/posix/include -I$(RIOTBASE)/sys/posix/include
endif endif
.PHONY: all clean patch reset .PHONY: all
all: patch all: download
"$(MAKE)" -C $(PKG_DIR) "$(MAKE)" -C $(PKG_BUILDDIR)
patch: $(PKG_DIR)/Makefile include $(RIOTBASE)/pkg/pkg.mk
$(PKG_DIR)/Makefile: $(PKG_DIR)/.git/config
cd "$(PKG_DIR)" && git am --ignore-whitespace "$(CURDIR)"/*.patch
$(PKG_DIR)/.git/config:
test -d "$(PKG_DIR)" || $(GITCACHE) clone "$(PKG_URL)" "$(PKG_VERSION)" "$(PKG_DIR)"
clean::
@echo "Cleaning up $(PKG_NAME) package..."
@cd "$(PKG_DIR)" 2> /dev/null > /dev/null && \
git clean -x -f && \
git am --abort && \
git reset --hard "$(PKG_VERSION)" && \
$(MAKE) patch || true
distclean::
rm -rf "$(PKG_DIR)"
Makefile.include:
@true
INCLUDES += -I$(RIOTPKG)/microcoap/microcoap INCLUDES += -I$(BINDIR)/pkg/microcoap
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment