mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16 lines
374 B
Makefile
16 lines
374 B
Makefile
PKG_NAME=libcoap
|
|
PKG_URL=https://github.com/obgm/libcoap
|
|
PKG_VERSION=ef41ce5d02d64cec0751882ae8fd95f6c32bc018
|
|
|
|
ifneq ($(RIOTBASE),)
|
|
INCLUDES += -I$(RIOTBASE)/sys/include -I$(RIOTBASE)/sys/net/include \
|
|
-I$(RIOTBASE)/sys/posix/include -I$(RIOTBASE)/sys/posix/pnet/include
|
|
endif
|
|
|
|
.PHONY: all
|
|
|
|
all: git-download
|
|
"$(MAKE)" -C $(PKG_BUILDDIR)
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|