mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
80d86b42ee
UNIX `cp` command does not have the `-t` option like its GNU variant. Hence, it usage breaks building RIOT e.g. on FreeBSD.
15 lines
376 B
Makefile
15 lines
376 B
Makefile
PKG_NAME=kconfiglib
|
|
PKG_URL=https://github.com/ulfalizer/Kconfiglib
|
|
PKG_VERSION=82f59179b1b35fcd8b6d188453b283599ea70518
|
|
PKG_LICENSE=ISC
|
|
PKG_BUILDDIR=$(CURDIR)/bin
|
|
|
|
.PHONY: all
|
|
|
|
all: git-download
|
|
cp $(PKG_BUILDDIR)/kconfiglib.py $(PKG_BUILDDIR)/menuconfig.py \
|
|
$(PKG_BUILDDIR)/genconfig.py $(PKG_BUILDDIR)/examples/merge_config.py \
|
|
.
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|