1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

pkg: microcoap: adapt to use pkg.mk

This commit is contained in:
Kaspar Schleiser 2016-03-22 18:29:46 +01:00
parent d03d83a7f6
commit 5586d8f1bc
2 changed files with 5 additions and 27 deletions

View File

@ -1,37 +1,15 @@
PKG_NAME=microcoap
PKG_URL=git://github.com/1248/microcoap.git
PKG_VERSION=9cb1dcda2182a8dca8483b230cda8b591a924c82
PKG_DIR=$(CURDIR)/$(PKG_NAME)
ifneq ($(RIOTBASE),)
INCLUDES += -I$(RIOTBASE)/sys/include -I$(RIOTBASE)/sys/net/include \
-I$(RIOTBASE)/sys/posix/include
endif
.PHONY: all clean patch reset
.PHONY: all
all: patch
"$(MAKE)" -C $(PKG_DIR)
all: download
"$(MAKE)" -C $(PKG_BUILDDIR)
patch: $(PKG_DIR)/Makefile
$(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
include $(RIOTBASE)/pkg/pkg.mk

View File

@ -1 +1 @@
INCLUDES += -I$(RIOTPKG)/microcoap/microcoap
INCLUDES += -I$(BINDIR)/pkg/microcoap